diff options
author | Astatin <[email protected]> | 2025-04-29 15:51:10 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-04-29 15:51:10 +0200 |
commit | c7d3a2929e9ed719b342e92a54d292d57ee105d2 (patch) | |
tree | 6e845d6163b59fbc2978f4cbadefb4fb5357126a /definitions.gbasm | |
parent | 7faf16e4453f935ee1159d32ddc2a6501ea91bbb (diff) |
Add Load_Dungeon function
Diffstat (limited to 'definitions.gbasm')
-rw-r--r-- | definitions.gbasm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/definitions.gbasm b/definitions.gbasm index 71912ca..eb756c7 100644 --- a/definitions.gbasm +++ b/definitions.gbasm @@ -139,14 +139,15 @@ .DEFINE mem_stat_jump_instruction $c044 ; takes from c044 to c046 .DEFINE mem_stat_jump_destination $c045 ; takes from c045 to c046 -.DEFINE mem_entity_spawning_pattern ($c046) - .DEFINE mem_number_of_attacks ($c047) .DEFINE mem_cursor_max_position ($c048) .DEFINE mem_learn_attack_dialogue_ret_ptr $c049 ; Takes $c049 and $c04a .DEFINE mem_learn_attack_attack_name_ptr $c04b ; Takes $c04b and $c04c +.DEFINE mem_entity_spawning_pattern ($c04d) +.DEFINE mem_floor_count_bin ($c04e) + ; ## WARNING THE SPACE BETWEEN $c400 and $c800 is used as a buffer for the loading map function during dungeon generation .DEFINE mem_map_loading_buffer $c400 |