summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/a2eauxslot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/a2eauxslot.h')
-rw-r--r--src/mess/machine/a2eauxslot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/a2eauxslot.h b/src/mess/machine/a2eauxslot.h
index 290e85ba0ec..7e4c16c7c4d 100644
--- a/src/mess/machine/a2eauxslot.h
+++ b/src/mess/machine/a2eauxslot.h
@@ -120,7 +120,7 @@ public:
virtual ~device_a2eauxslot_card_interface();
virtual UINT8 read_auxram(UINT16 offset) { printf("a2eauxslot: unhandled auxram read @ %04x\n", offset); return 0xff; }
- virtual void write_auxram(UINT16 offset, UINT8 data) { printf("a2eauxslot: unhandled auxram write %02x @ %04x\n", data, offset); }
+ virtual void write_auxram(UINT16 offset, UINT8 data) { printf("a2eauxslot: unhandled auxram write %02x @ %04x\n", data, offset); }
virtual void write_c07x(address_space &space, UINT8 offset, UINT8 data) {}
virtual UINT8 *get_vram_ptr() = 0;
virtual bool allow_dhr() { return true; }