Introduced symbol files for various Game Boy systems (CGB, AGB, MGB, SGB) to define boot sequences and functionalities. Included CPU instruction behavior tests, with detailed coverage of standard operations and interrupt handling. Added documentation for test execution and internal framework operations.
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
|