mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 00:07:21 +00:00
smarter manufacturer
some kind of promotion
This commit is contained in:
parent
1334a10101
commit
133d703964
@ -16,8 +16,12 @@
|
||||
.word __BANK1BLOCKSIZE__ ; bank 1 page size
|
||||
.word 1 ; version number
|
||||
.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
|
||||
; rotation 2=right
|
||||
.byte 0,0,0,0,0 ; spare
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user