apple2a/exporter.s

27 lines
701 B
ArmAsm
Raw Normal View History

2018-08-02 07:45:58 +00:00
; ---------------------------------------------------------------------------
; exporter.s
; ---------------------------------------------------------------------------
;
; Exports cc65-internal routines (such as "pushax") as C-visible ones ("_pushax").
; See the companion header file exporter.h.
.import pushax
.export _pushax := pushax
2018-08-03 23:25:57 +00:00
.import popax
2018-08-02 07:45:58 +00:00
.export _popax := popax
2018-08-03 23:25:57 +00:00
.import tosaddax
2018-08-02 07:45:58 +00:00
.export _tosaddax := tosaddax
2018-08-03 23:25:57 +00:00
.import tossubax
.export _tossubax := tossubax
.import tosmulax
.export _tosmulax := tosmulax
.import tosdivax
.export _tosdivax := tosdivax
.importzp ptr1
2018-08-02 21:43:55 +00:00
.exportzp _ptr1 = ptr1
2018-08-03 23:25:57 +00:00
.importzp tmp1
2018-08-03 22:31:11 +00:00
.exportzp _tmp1 = tmp1
2018-08-02 07:45:58 +00:00