aboutsummaryrefslogtreecommitdiff
path: root/src/aexec.h
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2019-03-13 02:50:42 -0400
committerB. Watson <yalhcru@gmail.com>2019-03-13 02:50:42 -0400
commit2973d0c78e9b8eed3c5af239927c6bd36af64604 (patch)
treea0fdfe7201303edd11c6d86015ef4f79796fcf0f /src/aexec.h
downloadfujichat-2973d0c78e9b8eed3c5af239927c6bd36af64604.tar.gz
initial commit
Diffstat (limited to 'src/aexec.h')
-rw-r--r--src/aexec.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/aexec.h b/src/aexec.h
new file mode 100644
index 0000000..41cc9fd
--- /dev/null
+++ b/src/aexec.h
@@ -0,0 +1,7 @@
+#ifndef AEXEC_H
+#define AEXEC_H
+
+extern int __fastcall__ (*atari_exec_p)(char *);
+#define atari_exec(x) ((*atari_exec_p)(x))
+
+#endif