Adjusted cc65 constructor to recent cc65 change.
With 0ee9b2e446
cc65 constructor may not use the BSS anymore.
This commit is contained in:
parent
5024468c2f
commit
634db88fe0
|
@ -64,16 +64,13 @@ SETNAM = $FFBD
|
|||
CLALL = $FFE7
|
||||
WRITE = $DEF1
|
||||
READ = $DEF4
|
||||
;---------------------------------------------------------------------
|
||||
.bss
|
||||
|
||||
cmdc: .res 1
|
||||
flags: .res 10
|
||||
;---------------------------------------------------------------------
|
||||
.data
|
||||
|
||||
illchr: .byte $3A, $2A, $3F, $3D ;illegal chars
|
||||
pw: .byte $2C, $50, $2C, $57 ;,p,w
|
||||
cmdc: .byte 0
|
||||
flags: .res 10
|
||||
;---------------------------------------------------------------------
|
||||
.segment "INIT"
|
||||
|
||||
|
|
|
@ -64,16 +64,13 @@ SETNAM = $FFBD
|
|||
CLALL = $FFE7
|
||||
WRITE = $DEF1
|
||||
READ = $DEF4
|
||||
;---------------------------------------------------------------------
|
||||
.bss
|
||||
|
||||
cmdc: .res 1
|
||||
flags: .res 10
|
||||
;---------------------------------------------------------------------
|
||||
.data
|
||||
|
||||
illchr: .byte $3A, $2A, $3F, $3D ;illegal chars
|
||||
pw: .byte $2C, $50, $2C, $57 ;,p,w
|
||||
cmdc: .byte 0
|
||||
flags: .res 10
|
||||
;---------------------------------------------------------------------
|
||||
.segment "INIT"
|
||||
|
||||
|
|
Loading…
Reference in a new issue