diff options
| author | Ian C <ianc@noddybox.co.uk> | 2003-12-22 00:01:31 +0000 |
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2003-12-22 00:01:31 +0000 |
| commit | a500f050272a8cca97ed0bbb7f8d7156555c61a7 (patch) | |
| tree | 879d83916f2dae38e3574c4937098e40ae27bdb0 /src/zx81.h | |
| parent | 9443eab98692b668fd35fc2a7e2cfb043953dbc7 (diff) | |
Added memory menu and some devel changes
Diffstat (limited to 'src/zx81.h')
| -rw-r--r-- | src/zx81.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -28,11 +28,16 @@ #define EZX81ZX81H "$Id$" #include "z80.h" +#include "SDL.h" /* Initialise the ZX81 */ -void ZX81Init(void); +void ZX81Init(Z80 *z80); + +/* Handle keypresses +*/ +void ZX81KeyEvent(SDL_Event *e); /* Interfaces for the Z80 */ @@ -42,6 +47,10 @@ Z80Byte ZX81ReadPort(Z80 *z80, Z80Word port); void ZX81WritePort(Z80 *z80, Z80Word port, Z80Byte val); Z80Byte ZX81ReadForDisassem(Z80 *z80, Z80Word addr); +/* Interfaces for memory menu +*/ +const char *ZX81Info(Z80 *z80); + #endif |
