summaryrefslogtreecommitdiff
path: root/src/spec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/spec.h')
-rw-r--r--src/spec.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/spec.h b/src/spec.h
index 558ba6a..bb62b91 100644
--- a/src/spec.h
+++ b/src/spec.h
@@ -31,6 +31,10 @@
#include "z80.h"
#include "SDL.h"
+/* Types for Mount and Unmount
+*/
+typedef enum {SPEC_TAPE_IN,SPEC_TAPE_OUT} SPECMountType;
+
/* Initialise the SPEC
*/
@@ -54,6 +58,11 @@ const char *SPECGetLabel(Z80 *z80, Z80Word addr);
const char *SPECInfo(Z80 *z80);
+/* Interfaces for snapshot and device control
+*/
+void SPECMount(SPECMountType type, const char *path);
+void SPECUnmount(SPECMountType type);
+
#endif