mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
smarter manufacturer
some kind of promotion
This commit is contained in:
parent
d006317b0e
commit
246814e63b
@ -16,8 +16,12 @@
|
|||||||
.word __BANK1BLOCKSIZE__ ; bank 1 page size
|
.word __BANK1BLOCKSIZE__ ; bank 1 page size
|
||||||
.word 1 ; version number
|
.word 1 ; version number
|
||||||
.asciiz "Cart name " ; 32 bytes cart name
|
.asciiz "Cart name " ; 32 bytes cart name
|
||||||
.asciiz "Manufacturer " ; 16 bytes manufacturer
|
.byte "cc65 V" ; 16 bytes manufacturer
|
||||||
|
.byte ((.VERSION >> 8) & $0F) + '0'
|
||||||
|
.byte '.'
|
||||||
|
.byte ((.VERSION >> 4) & $0F) + '0'
|
||||||
|
.byte (.VERSION & $0F) + '0'
|
||||||
|
.asciiz " "
|
||||||
.byte 0 ; rotation 1=left
|
.byte 0 ; rotation 1=left
|
||||||
; rotation 2=right
|
; rotation 2=right
|
||||||
.byte 0,0,0,0,0 ; spare
|
.byte 0,0,0,0,0 ; spare
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user