mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Fix location of all relevant SECTIONs in tests
If section placement is changed such that those are no longer guaranteed to be placed at zero, tests would break when they shouldn't.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
charmap "A", 1
|
charmap "A", 1
|
||||||
SECTION "sec", ROM0
|
SECTION "sec", ROM0[0]
|
||||||
_A_ EQU "A"
|
_A_ EQU "A"
|
||||||
db _A_
|
db _A_
|
||||||
|
|||||||
@@ -10,5 +10,5 @@ testing: MACRO
|
|||||||
db _NARG
|
db _NARG
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
SECTION "Test output", ROM0
|
SECTION "Test output", ROM0[0]
|
||||||
testing 1, 2, 3
|
testing 1, 2, 3
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
SECTION "sec", ROM0
|
SECTION "sec", ROM0[0]
|
||||||
db "é"
|
db "é"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
SECTION "All instructions", ROM0
|
SECTION "All instructions", ROM0[0]
|
||||||
|
|
||||||
; 8-bit Arithmetic and Logic Instructions
|
; 8-bit Arithmetic and Logic Instructions
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user