summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/7200fifo.h
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2013-05-30 15:23:23 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2013-05-30 15:23:23 +0000
commite2956881b9f429f8b587b810546653ced848ce73 (patch)
tree56f7a972441f467dbeb3ea3480710663f0312207 /src/emu/machine/7200fifo.h
parentfd4a360e4d3fa6141b6b4fa97c8e2943676140b4 (diff)
nevermind this yet
Diffstat (limited to 'src/emu/machine/7200fifo.h')
-rw-r--r--src/emu/machine/7200fifo.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/emu/machine/7200fifo.h b/src/emu/machine/7200fifo.h
index d4abe552ed7..189bc3a9b06 100644
--- a/src/emu/machine/7200fifo.h
+++ b/src/emu/machine/7200fifo.h
@@ -102,18 +102,14 @@ public:
DECLARE_WRITE8_MEMBER( data_byte_w ) { fifo_write(data); }
DECLARE_READ8_MEMBER( data_byte_r ) { return (UINT8)fifo_read(); }
- // use these for configurations in cascaded width expansion mode using more than 16 bits
- DECLARE_WRITE32_MEMBER( data_dword_w ) { fifo_write(data); }
- DECLARE_READ32_MEMBER( data_dword_r ) { return (UINT32)fifo_read(); }
-
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
private:
- void fifo_write(UINT32 data);
- UINT32 fifo_read();
+ void fifo_write(UINT16 data);
+ UINT16 fifo_read();
UINT16* m_buffer;
int m_ram_size;