apple2a/exporter.s

56 lines
1.4 KiB
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-06 05:59:56 +00:00
.import incsp2
.export _incsp2 := incsp2
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
2018-08-03 23:41:52 +00:00
.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
2018-08-05 23:27:33 +00:00
.import bnegax
.export _bnegax := bnegax
2018-08-05 23:43:50 +00:00
.import negax
.export _negax := negax
2018-08-06 05:59:56 +00:00
.import aslax1
.export _aslax1 := aslax1
.import ldaxi
.export _ldaxi := ldaxi
.import staxspidx
.export _staxspidx := staxspidx
.importzp sp
.exportzp _sp = sp
2018-08-03 23:25:57 +00:00
.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-12 07:03:01 +00:00
.importzp tmp2
.exportzp _tmp2 = tmp2
2018-08-02 07:45:58 +00:00