diff options
author | Astatin <[email protected]> | 2024-08-20 19:04:52 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-08-20 19:04:52 +0900 |
commit | 358e97cc2628d4617543d20d2c40111699f067d6 (patch) | |
tree | debc43b063bf995cc3139098f780193d5c73ba87 /definitions.gbasm | |
parent | c5ee7cfdd9ecb83bc1547a66ab1895685e49aaa4 (diff) |
Random walker mitosis + Add rooms at the end of random walk
Diffstat (limited to 'definitions.gbasm')
-rw-r--r-- | definitions.gbasm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/definitions.gbasm b/definitions.gbasm index 2df133f..c1741d4 100644 --- a/definitions.gbasm +++ b/definitions.gbasm @@ -11,7 +11,7 @@ .DEFINE OAM_start $FE00 .DEFINE dungeon_generation_step $20 -.DEFINE intial_duplication_probablity $2 +.DEFINE intial_duplication_probablity $02 .DEFINE mem_bunny_x_px ($c000) .DEFINE mem_bunny_y_px ($c001) @@ -26,6 +26,8 @@ .DEFINE mem_rng_state_1 ($c00a) ; 2 bytes .DEFINE mem_rng_state_2 ($c00b) ; 2 bytes +.DEFINE next_free_head_higher_bytes $c7 +.DEFINE mem_next_free_head_lower_bytes ($c6ff) .DEFINE mem_dungeon_generation_heads $c700 ; Takes the memory from c700 to c717 ; struct head { ; direction: u8 (really u3 but padding), |