aboutsummaryrefslogtreecommitdiff
path: root/rng.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-08-27 18:33:46 +0900
committerAstatin <astatin@redacted>2024-08-27 18:33:46 +0900
commit4a4ff1db8fe026ced0530f8c2531033da43164e6 (patch)
tree2f1055120080dd6b7557fb383dd60e5354e47da4 /rng.gbasm
parentf0d9de7afa943ebd41c1b202690b2ab3e387f708 (diff)
Add objects and spawn bunny & goal in a random room
Diffstat (limited to 'rng.gbasm')
-rw-r--r--rng.gbasm4
1 files changed, 2 insertions, 2 deletions
diff --git a/rng.gbasm b/rng.gbasm
index 5a45286..00d3cd5 100644
--- a/rng.gbasm
+++ b/rng.gbasm
@@ -7,9 +7,9 @@ Debug_RNG:
RET
Initialize_RNG:
- LD A, $0c
+ LD A, $15 ; $0c
LD $mem_rng_state_1, A
- LD A, $15
+ LD A, $15 ; $15
LD $mem_rng_state_2, A
RET