summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2007-01-30 23:46:49 +0000
committerIan C <ianc@noddybox.co.uk>2007-01-30 23:46:49 +0000
commit6fca8cfe0bcbe30767c30ac9b6d9a79e4fa19edc (patch)
tree303f46557317a8e43524ba7999715f547ab9783e /include
parentef641589bf763ea12e73abf4bf42e45ac1acd2ff (diff)
Added pseudo-hires support
Diffstat (limited to 'include')
-rw-r--r--include/zx81.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/zx81.h b/include/zx81.h
index 992cba7..4050918 100644
--- a/include/zx81.h
+++ b/include/zx81.h
@@ -33,7 +33,7 @@
/* Initialise the ZX81
*/
-void ZX81Init(uint16 *vram, Z80 *z80);
+void ZX81Init(uint16 *text_vram, uint16 *bitmap_vram, Z80 *z80);
/* Handle keypresses
*/
@@ -58,8 +58,13 @@ void ZX81Reset(Z80 *z80);
lost on the next emulation update cycle.
The character '%' toggles inverse video.
+
+ ZX81SuspendDisplay() and ZX81ResumeDisplay() should be called so that the
+ ZX81 can set up its internals.
*/
void ZX81DisplayString(const char *p);
+void ZX81SuspendDisplay(void);
+void ZX81ResumeDisplay(void);
/* Interfaces for the Z80
*/