diff options
Diffstat (limited to 'include/zx81.h')
-rw-r--r-- | include/zx81.h | 7 |
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 */ |