mirror of
https://github.com/bradgrantham/apple2a.git
synced 2025-01-02 22:33:20 +00:00
39 lines
1013 B
ArmAsm
39 lines
1013 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
|
|
.export _pushax := pushax
|
|
.import popax
|
|
.export _popax := popax
|
|
.import tosaddax
|
|
.export _tosaddax := tosaddax
|
|
.import tossubax
|
|
.export _tossubax := tossubax
|
|
.import tosmulax
|
|
.export _tosmulax := tosmulax
|
|
.import tosdivax
|
|
.export _tosdivax := tosdivax
|
|
.import toseqax
|
|
.export _toseqax := toseqax
|
|
.import tosneax
|
|
.export _tosneax := tosneax
|
|
.import tosltax
|
|
.export _tosltax := tosltax
|
|
.import tosgtax
|
|
.export _tosgtax := tosgtax
|
|
.import tosleax
|
|
.export _tosleax := tosleax
|
|
.import tosgeax
|
|
.export _tosgeax := tosgeax
|
|
|
|
.importzp ptr1
|
|
.exportzp _ptr1 = ptr1
|
|
|
|
.importzp tmp1
|
|
.exportzp _tmp1 = tmp1
|
|
|