summaryrefslogtreecommitdiff
path: root/src/memmenu.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-01-22 02:38:13 +0000
committerIan C <ianc@noddybox.co.uk>2004-01-22 02:38:13 +0000
commit2fc6cc22a29a53dc5127eafa2719d11e9bb38c42 (patch)
treed7e1c1ff902b2cb6469355c1750f1e93f42d1155 /src/memmenu.h
parentfc438b5afe5b6126d5cae3dd3586e608bc7a4925 (diff)
Updated with various bits from espec (memory menu, GUI, etc)
Diffstat (limited to 'src/memmenu.h')
-rw-r--r--src/memmenu.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/memmenu.h b/src/memmenu.h
index bacbef9..1caecb5 100644
--- a/src/memmenu.h
+++ b/src/memmenu.h
@@ -30,14 +30,19 @@
#include "z80.h"
-/* Memory menu
+/* Memory menu. Returns TRUE if exit (from program) selected.
*/
-void MemoryMenu(Z80 *z80);
+int MemoryMenu(Z80 *z80);
-/* Display the state of the ZX81 at the bottom of the screen
+/* Display the state of the SPEC at the bottom of the screen
*/
-void DisplayState(Z80 *z80);
+void DisplayState(Z80 *z80);
+
+
+/* Non-NULL (the breakpoint hit) if a breakpoint has been hit
+*/
+const char *Break(void);
#endif