mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
17 lines
403 B
ArmAsm
17 lines
403 B
ArmAsm
;
|
|
; Platform-specific variables for the exec program-chaining function
|
|
;
|
|
|
|
.include "cx16.inc"
|
|
|
|
; exec() is written in C.
|
|
; Provide the spellings that the C compiler wants to use.
|
|
|
|
.export _vartab := VARTAB
|
|
.export _memsize := MEMSIZE
|
|
|
|
.exportzp _txtptr := TXTPTR
|
|
|
|
.export _basbuf := BASIC_BUF
|
|
.exportzp _basbuf_len = BASIC_BUF_LEN
|