aboutsummaryrefslogtreecommitdiff
path: root/main.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-08-19 15:57:51 +0200
committerAstatin <[email protected]>2025-08-19 15:57:51 +0200
commitbbc5ab6ad02dbabcb79e1e83195288c0fb8cf1d1 (patch)
tree619cda5870860164fd8bddcb4e0ed741cf63ca49 /main.gbasm
parentc70b3cb2cab64d550a585dcfbc166bf30c0ea955 (diff)
Add insect bite & frog grab sound effects + disallow 2 sound effects at once
Diffstat (limited to 'main.gbasm')
-rw-r--r--main.gbasm6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.gbasm b/main.gbasm
index 0966338..e6a6ba1 100644
--- a/main.gbasm
+++ b/main.gbasm
@@ -10,7 +10,7 @@ Entrypoint:
LD HL, $mem_bunny_attacks
LD A, $01
LD (HL+), A
- LD A, $04
+ LD A, $03
LD (HL+), A
XOR A
LD (HL+), A
@@ -72,6 +72,10 @@ Entrypoint:
.INCLUDE "music/soundeffects/laser.gbasm"
.INCLUDE "music/soundeffects/damage.gbasm"
.INCLUDE "music/soundeffects/earcoptr.gbasm"
+.INCLUDE "music/soundeffects/freeze.gbasm"
+.INCLUDE "music/soundeffects/bite.gbasm"
+.INCLUDE "music/soundeffects/grab.gbasm"
+.ASSERT bank(.) $01
_music_Dungeon:
.INCLUDEBIN "music/morning-forest.vgm"