mirror of
https://github.com/bradgrantham/apple2a.git
synced 2024-10-31 23:09:39 +00:00
14 lines
229 B
C
14 lines
229 B
C
#ifndef __EXPORTER_H__
|
|
#define __EXPORTER_H__
|
|
|
|
// Defines functions exported in exporter.s.
|
|
|
|
extern void pushax();
|
|
extern void popax();
|
|
extern void tosaddax();
|
|
|
|
extern char ptr1;
|
|
#pragma zpsym ("ptr1");
|
|
|
|
#endif // __EXPORTER_H__
|