summaryrefslogtreecommitdiff
path: root/src/spec.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-01-13 02:21:06 +0000
committerIan C <ianc@noddybox.co.uk>2004-01-13 02:21:06 +0000
commit44ffbe36a8e7eaab7d7851bb79f229c4383c6545 (patch)
tree5ec706c58e940047021c0fd8665e96c6d3d50c58 /src/spec.h
parent25bc35fbadebbf28eed3c89978e435d2df557b42 (diff)
Added breakpoints to memory menu and added extra GUI items. Plus general fixes.
Diffstat (limited to 'src/spec.h')
-rw-r--r--src/spec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spec.h b/src/spec.h
index bb62b91..f771480 100644
--- a/src/spec.h
+++ b/src/spec.h
@@ -21,8 +21,6 @@
-------------------------------------------------------------------------
Provides the emulation for the SPEC
-
- Requires access to the HOOK and FETCH Z80 callbacks
*/
#ifndef ESPEC_SPECH
@@ -48,6 +46,8 @@ void SPECKeyEvent(SDL_Event *e);
*/
Z80Byte SPECReadMem(Z80 *z80, Z80Word addr);
void SPECWriteMem(Z80 *z80, Z80Word addr, Z80Byte val);
+Z80Word SPECReadWord(Z80 *z80, Z80Word addr);
+void SPECWriteWord(Z80 *z80, Z80Word addr, Z80Word val);
Z80Byte SPECReadPort(Z80 *z80, Z80Word port);
void SPECWritePort(Z80 *z80, Z80Word port, Z80Byte val);
Z80Byte SPECReadForDisassem(Z80 *z80, Z80Word addr);