Skip to content

Commit 03bc4ac

Browse files
authored
Update ram.asm
Added variables needed for crash detection
1 parent cda9a96 commit 03bc4ac

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ram.asm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ tmpZ: .res 1 ; $0005
88
tmpBulkCopyToPpuReturnAddr: .res 2 ; $0006 ; 2 bytes
99
binScore: .res 4 ; $8 ; 4 bytes binary
1010
score: .res 4 ; $C ; 4 bytes BCD
11-
.res 7
11+
nmiReturnAddr: .res 1 ; $0010
12+
crashFlag: .res 1 ; $0011
13+
cycleCount: .res 2 ; $0012 ; 2 bytes
14+
.res 3
1215

1316
rng_seed: .res 2 ; $0017
1417
spawnID: .res 1 ; $0019

0 commit comments

Comments
 (0)