Advertisement
Guest User

Untitled

a guest
May 22nd, 2022
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; ------------------------------------------------------------------------
  2. SECTION FRAGMENT "TITLE_SCREEN ROMX", ROMX
  3.  
  4. title_screen_data::
  5.     dw title_screen_palette
  6.     db 40
  7.     dw title_screen_tilemap
  8.     dw title_screen_tilemap_attr
  9.     dw title_screen_tile_data_vram0
  10.     db 157
  11.     dw 0
  12.     db 0
  13.  
  14. title_screen_palette::
  15. INCBIN "test_output/title_screen_data.bin", 0, 40
  16. .end
  17.  
  18. ; ------------------------------------------------------------------------
  19. SECTION FRAGMENT "TITLE_SCREEN ROMX", ROMX, ALIGN[ 4 ] ; 16 byte aligned
  20.  
  21. title_screen_tile_data_vram0::
  22. INCBIN "test_output/title_screen_data.bin", 760, 2528
  23. .end
  24.  
  25. title_screen_tilemap::
  26. INCBIN "test_output/title_screen_data.bin", 40, 360
  27. .end
  28.  
  29. db 0, 0, 0, 0, 0, 0, 0, 0
  30.  
  31. title_screen_tilemap_attr::
  32. INCBIN "test_output/title_screen_data.bin", 400, 360
  33. .end
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement