mirror of
https://github.com/bradgrantham/apple2a.git
synced 2024-11-27 03:49:31 +00:00
28 lines
536 B
C
28 lines
536 B
C
#ifndef __EXPORTER_H__
|
|
#define __EXPORTER_H__
|
|
|
|
// Defines functions exported in exporter.s.
|
|
|
|
extern void pushax();
|
|
extern void popax();
|
|
extern void tosaddax();
|
|
extern void tossubax();
|
|
extern void tosmulax();
|
|
extern void tosdivax();
|
|
extern void toseqax();
|
|
extern void tosneax();
|
|
extern void tosltax();
|
|
extern void tosgtax();
|
|
extern void tosleax();
|
|
extern void tosgeax();
|
|
|
|
// Two bytes each.
|
|
extern unsigned int ptr1;
|
|
#pragma zpsym ("ptr1");
|
|
|
|
// One byte each.
|
|
extern unsigned char tmp1;
|
|
#pragma zpsym ("tmp1");
|
|
|
|
#endif // __EXPORTER_H__
|