mirror of
https://github.com/bradgrantham/apple2a.git
synced 2024-11-27 03:49:31 +00:00
11 lines
186 B
C
11 lines
186 B
C
#ifndef __EXPORTER_H__
|
|
#define __EXPORTER_H__
|
|
|
|
// Defines functions exported in exporter.s.
|
|
|
|
extern void pushax();
|
|
extern void popax();
|
|
extern void tosaddax();
|
|
|
|
#endif // __EXPORTER_H__
|