apple2a/exporter.s
2018-08-02 14:44:18 -07:00

17 lines
492 B
ArmAsm

; ---------------------------------------------------------------------------
; exporter.s
; ---------------------------------------------------------------------------
;
; Exports cc65-internal routines (such as "pushax") as C-visible ones ("_pushax").
; See the companion header file exporter.h.
.import pushax
.import popax
.import tosaddax
.importzp ptr1
.export _pushax := pushax
.export _popax := popax
.export _tosaddax := tosaddax
.exportzp _ptr1 = ptr1