aboutsummaryrefslogtreecommitdiff
path: root/bunny.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-08-15 16:38:19 +0900
committerAstatin <astatin@redacted>2024-08-15 16:38:19 +0900
commit16e0ec4460954b65f3b972fab00f3ad7527062ff (patch)
tree352401c64d31c7779a991ef58b9bfd645f5573e8 /bunny.gbasm
parentf9f115384757135fa8488bd43eb3e5e91cc243d9 (diff)
Displaying pre-generated dungeon
Diffstat (limited to 'bunny.gbasm')
-rw-r--r--bunny.gbasm12
1 files changed, 8 insertions, 4 deletions
diff --git a/bunny.gbasm b/bunny.gbasm
index ff2aa99..a297c7e 100644
--- a/bunny.gbasm
+++ b/bunny.gbasm
@@ -1,12 +1,16 @@
Initialize_Bunny:
- LD A, $05
+ LD A, $10
LD $mem_bunny_x, A
- LD A, $04
+ LD A, $10
LD $mem_bunny_y, A
- LD A, $08
+ LD A, $b8
LD $reg_viewport_x, A
- LD A, $08
+ LD A, $c8
LD $reg_viewport_y, A
+ LD A, $0b
+ LD $mem_viewport_x, A
+ LD A, $0c
+ LD $mem_viewport_y, A
LD A, $50
LD $mem_bunny_x_px, A
LD A, $40