summaryrefslogtreecommitdiff
path: root/plugins/ao/main.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-06-30 08:54:55 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-06-30 08:54:55 +0200
commita1fce239dce0c2bdbf408d0ea19dd5a96bb328cf (patch)
tree558e57b9bbf5bc62dae774c5c23477794212fe97 /plugins/ao/main.c
parent013f0d807ca2185b643b165d6f51a44147181411 (diff)
ao: qsf z80 emu reentrancy
Diffstat (limited to 'plugins/ao/main.c')
-rw-r--r--plugins/ao/main.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/plugins/ao/main.c b/plugins/ao/main.c
index ed6f8d60..1f24628e 100644
--- a/plugins/ao/main.c
+++ b/plugins/ao/main.c
@@ -58,32 +58,6 @@ static struct
{ 0xffffffff, "", NULL, NULL, NULL, NULL, 0, NULL }
};
-/* redirect stubs to interface the Z80 core to the QSF engine */
-uint8 memory_read(uint16 addr)
-{
- return qsf_memory_read(addr);
-}
-
-uint8 memory_readop(uint16 addr)
-{
- return memory_read(addr);
-}
-
-uint8 memory_readport(uint16 addr)
-{
- return qsf_memory_readport(addr);
-}
-
-void memory_write(uint16 addr, uint8 byte)
-{
- qsf_memory_write(addr, byte);
-}
-
-void memory_writeport(uint16 addr, uint8 byte)
-{
- qsf_memory_writeport(addr, byte);
-}
-
/* ao_get_lib: called to load secondary files */
int ao_get_lib(char *filename, uint8 **buffer, uint64 *length)
{