We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89545f5 + 7593403 commit 318c0a5Copy full SHA for 318c0a5
src/io.asm
@@ -62,6 +62,6 @@ MMC5_CHR_BANK1 := $5127
62
63
.macro RESET_MMC1
64
.if INES_MAPPER = 1
65
- inc $8000 ; initRam
+ inc $8000 ; checkRegion
66
.endif
67
.endmacro
src/main.asm
@@ -15,6 +15,9 @@
15
16
.segment "PRG_chunk1": absolute
17
18
+; region code at start of page to keep cycle count consistent
19
+.include "util/check_region.asm"
20
+
21
initRam:
22
23
.include "boot.asm"
@@ -46,7 +49,6 @@ mainLoop:
46
49
.include "highscores/entry_screen.asm"
47
50
48
51
.include "util/core.asm"
-.include "util/check_region.asm"
52
.include "util/bytesprite.asm"
53
.include "util/strings.asm"
54
.include "util/math.asm"
0 commit comments