Merge pull request #15 from dmalec/platform-neutral-paths

Switched back slash to forward slash in assembly so Merlin32 works on OSX as well as Windows
This commit is contained in:
Lucas Scharenbroich 2022-07-28 12:20:40 -05:00 committed by GitHub
commit babd4d06b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -11,28 +11,28 @@
; 64KB Tile Memory
ASM static\TileData.s
ASM static/TileData.s
KND #$1001 ; Type and Attributes ($10=Static,$01=Data)
ALI BANK
SNA TDATA
; 64KB Sprite Plane Data
ASM static\SprData.s
ASM static/SprData.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
ALI BANK
SNA SDATA
; 64KB Sprite Mask Data
ASM static\SprMask.s
ASM static/SprMask.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
ALI BANK
SNA SMASK
; 64KB Tile Store
ASM static\TileStore.s
ASM static/TileStore.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
ALI BANK
SNA TSTORE