aboutsummaryrefslogtreecommitdiff
path: root/main.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-08-06 18:45:46 +0900
committerAstatin <astatin@redacted>2024-08-06 18:45:46 +0900
commita993a0f632dfddcd5bf55bd4219492a66f22d5d1 (patch)
tree778bc1a390e8c56ddede1467c047e5c8751f41ff /main.gbasm
parente20e0ce42d1c1fc65cea1a655d64f2c9b2efc17a (diff)
Bunny now change direction and F O L I A G E
Diffstat (limited to 'main.gbasm')
-rw-r--r--main.gbasm4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.gbasm b/main.gbasm
index 6eb27f3..36993de 100644
--- a/main.gbasm
+++ b/main.gbasm
@@ -1,8 +1,9 @@
+.INCLUDE "definitions.gbasm"
.INCLUDE "init.gbasm"
Entrypoint:
CALL =Load_Tile
- CALL =Load_Number_Font
+ CALL =Load_Map
CALL =Initialize_Bunny
EI
@@ -18,5 +19,6 @@ VBLANK_Entrypoint:
.INCLUDE "tiles.gbasm"
.INCLUDE "print.gbasm"
+.INCLUDE "map.gbasm"
.INCLUDE "bunny.gbasm"
.INCLUDE "buttons.gbasm"