22 lines
326 B
PHP
22 lines
326 B
PHP
.incdir "common"
|
|
|
|
; GBS music file
|
|
.ifdef BUILD_GBS
|
|
.include "build_gbs.s"
|
|
.endif
|
|
|
|
; Devcart
|
|
.ifdef BUILD_DEVCART
|
|
.include "build_devcart.s"
|
|
.endif
|
|
|
|
; Sub-test in a multi-test ROM
|
|
.ifdef BUILD_MULTI
|
|
.include "build_multi.s"
|
|
.endif
|
|
|
|
; GB ROM (default)
|
|
.ifndef RUNTIME_INCLUDED
|
|
.include "build_rom.s"
|
|
.endif
|