mirror of
https://github.com/bradgrantham/apple2a.git
synced 2024-10-31 23:09:39 +00:00
17 lines
492 B
ArmAsm
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
|
|
|