From ab8f986fe64553c61d3e941b8c6fdc17ed6a4209 Mon Sep 17 00:00:00 2001 From: greg Date: Thu, 15 Dec 2016 01:01:33 -0800 Subject: [PATCH] Added a bit more to tile map Plus using tile-flipping --- test_gfx.asm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/test_gfx.asm b/test_gfx.asm index 7e2d326..89a721f 100644 --- a/test_gfx.asm +++ b/test_gfx.asm @@ -79,7 +79,7 @@ Start: Load_Block_to_VRAM Tiles, $0000, (8*2*3), - Load_Block_to_VRAM TileMap, $0400, 4 + Load_Block_to_VRAM TileMap, $0400, 32 lda #%10000001 ; enable NMI and joypads sta $4200 @@ -173,5 +173,13 @@ Tiles: ;vhopppcc cccccccc o: priority bit p: palette number ; c: Starting character (tile) number TileMap: - .db $02, $00, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 + .db $02, $80, $02, $00 +TileMapEnd: .ENDS