summaryrefslogtreecommitdiff
path: root/src/spec.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-01-06 02:06:37 +0000
committerIan C <ianc@noddybox.co.uk>2004-01-06 02:06:37 +0000
commit25bc35fbadebbf28eed3c89978e435d2df557b42 (patch)
tree74619afa6e82dd4818dd210c20396946a7c1722e /src/spec.h
parent63c0f2a2f2819940efde5ff52ab13109809405f9 (diff)
Devel checkin - added util and snap objects and non-working TAP support
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