diff options
author | Astatin <[email protected]> | 2024-08-09 21:19:36 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-08-09 21:19:36 +0900 |
commit | 9790dc65026c22f26ea6e247c5506b88f36691a4 (patch) | |
tree | 053bced30579170dbeff79946ebcd4c22470f050 /main.gbasm | |
parent | bdd60c734a477fc76e4398d9367d7071326d64aa (diff) |
Turn off screen during initialization to be compatible with sameboy
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,9 +3,13 @@ Entrypoint: CALL =Load_Tile - CALL =Initialize_Bunny CALL =Load_Map - + CALL =Initialize_Bunny + + ; LCDC + LD A, $97 + LD $reg_lcd_controller, A + EI Wait_for_VRAM.loop: HALT |