This commit is contained in:
Byron Lathi 2019-06-05 01:07:05 -04:00
commit 720114468c
2 changed files with 2 additions and 50 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.o
bin/
*.list
bin/

View File

@ -1,49 +0,0 @@
ca65 V2.17 - Git 644d623
Main file : src\world.asm
Current file: src\world.asm
000000r 1 ; world.asm
000000r 1 ;
000000r 1 ; The world file contains the following:
000000r 1 ; * The current world, stored as an array of bytes refering
000000r 1 ; to the tile type they represent
000000r 1 ; * The item map, which stores all of the items to be drawn
000000r 1 ; on top of any of the applicable items, namely conveyor belts
000000r 1 ; * Routines for getting the current 10x10 window from the larger
000000r 1 ; world.
000000r 1
000000r 1 .export World
000000r 1
000000r 1 World: ; This is the array which stores all of the world data.
000000r 1 ; Right now this is just 10x10, so no other methods are needed.
000000r 1 02 00 00 00 .byte 02, 00, 00, 00, 00, 00, 00, 00, 00, 00
000004r 1 00 00 00 00
000008r 1 00 00
00000Ar 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
00000Er 1 00 00 00 00
000012r 1 00 00
000014r 1 00 02 02 02 .byte 00, 02, 02, 02, 14, 02, 02, 02, 00, 00
000018r 1 0E 02 02 02
00001Cr 1 00 00
00001Er 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
000022r 1 00 00 00 00
000026r 1 00 00
000028r 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
00002Cr 1 00 00 00 00
000030r 1 00 00
000032r 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
000036r 1 00 00 00 00
00003Ar 1 00 00
00003Cr 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
000040r 1 00 00 00 00
000044r 1 00 00
000046r 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
00004Ar 1 00 00 00 00
00004Er 1 00 00
000050r 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
000054r 1 00 00 00 00
000058r 1 00 00
00005Ar 1 00 00 00 00 .byte 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
00005Er 1 00 00 00 00
000062r 1 00 00
000063r 1