aboutsummaryrefslogtreecommitdiff
path: root/main.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-04-29 15:51:10 +0200
committerAstatin <[email protected]>2025-04-29 15:51:10 +0200
commitc7d3a2929e9ed719b342e92a54d292d57ee105d2 (patch)
tree6e845d6163b59fbc2978f4cbadefb4fb5357126a /main.gbasm
parent7faf16e4453f935ee1159d32ddc2a6501ea91bbb (diff)
Add Load_Dungeon function
Diffstat (limited to 'main.gbasm')
-rw-r--r--main.gbasm3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.gbasm b/main.gbasm
index d4a1578..dc788d3 100644
--- a/main.gbasm
+++ b/main.gbasm
@@ -104,6 +104,8 @@ Entrypoint:
LD $mem_bunny_mana, A
LD A, $01
LD $mem_floor_count, A
+ LD A, $00
+ LD $mem_floor_count_bin, A
LD HL, $mem_bunny_attacks
LD A, $01
@@ -130,6 +132,7 @@ Entrypoint:
.INCLUDE "map/generation.gbasm"
.INCLUDE "map/objects.gbasm"
.INCLUDE "map/generationevents.gbasm"
+.INCLUDE "map/dungeons.gbasm"
.INCLUDE "gui.gbasm"
.INCLUDE "modes/vblank_handler_list.gbasm"
.INCLUDE "entity/utils.gbasm"