summaryrefslogtreecommitdiff
path: root/emu/device.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-12-29 11:08:58 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-12-29 11:08:58 +0100
commit53569267c59204f56e4c0fddb669536d28706e5c (patch)
tree0c358de956e824d6c47f4820fdc8013ae3fa3089 /emu/device.h
parentdd4174bb32973d1212235dc8e262c23013b88912 (diff)
download6502-53569267c59204f56e4c0fddb669536d28706e5c.tar.gz
6502-53569267c59204f56e4c0fddb669536d28706e5c.tar.bz2
- testing of correct cycles
- fixed some SDL includes
Diffstat (limited to 'emu/device.h')
-rw-r--r--emu/device.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/emu/device.h b/emu/device.h
index 1cf36e7..81a1dd4 100644
--- a/emu/device.h
+++ b/emu/device.h
@@ -28,6 +28,7 @@ typedef struct device_t {
void device_init( device_t *device, const char *name );
void device_copy( device_t *to, device_t *from );
+
uint8_t device_read( void *obj, uint16_t addr );
void device_write( void *obj, uint16_t addr, uint8_t data );
#ifdef WITH_GUI