diff options
author | Astatin <[email protected]> | 2024-11-29 18:11:43 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2024-11-29 18:11:43 +0900 |
commit | 20422f9a4a180f2c148d93e68930f57379311ca7 (patch) | |
tree | 9e58002ad6bd9bd0b6243828f55aa03e1c6c9ab7 /tiles.gbasm | |
parent | c050a27b278df2efb4baf81b5e8c7e2f7dfd7e00 (diff) |
Add animation display
Diffstat (limited to 'tiles.gbasm')
-rw-r--r-- | tiles.gbasm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tiles.gbasm b/tiles.gbasm index b5da2a3..35262bc 100644 --- a/tiles.gbasm +++ b/tiles.gbasm @@ -17,6 +17,11 @@ Load_Tile: LD DE, =BG_Tile_Image_Data LD BC, $04a0 CALL =memcpy + + LD HL, $8600 + LD DE, =Animation_Sprites_Data + LD BC, $0040 + CALL =memcpy RET Dialogue_Box_Tilemap_data: |