summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2eramworks3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2eramworks3.h')
-rw-r--r--src/devices/bus/a2bus/a2eramworks3.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/a2bus/a2eramworks3.h b/src/devices/bus/a2bus/a2eramworks3.h
index 7978a405512..c5b2a7e04f1 100644
--- a/src/devices/bus/a2bus/a2eramworks3.h
+++ b/src/devices/bus/a2bus/a2eramworks3.h
@@ -24,22 +24,22 @@ class a2eaux_ramworks3_device:
{
public:
// construction/destruction
- a2eaux_ramworks3_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- a2eaux_ramworks3_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ a2eaux_ramworks3_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ a2eaux_ramworks3_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
protected:
virtual void device_start() override;
virtual void device_reset() override;
- virtual UINT8 read_auxram(UINT16 offset) override;
- virtual void write_auxram(UINT16 offset, UINT8 data) override;
- virtual UINT8 *get_vram_ptr() override;
- virtual UINT8 *get_auxbank_ptr() override;
+ virtual uint8_t read_auxram(uint16_t offset) override;
+ virtual void write_auxram(uint16_t offset, uint8_t data) override;
+ virtual uint8_t *get_vram_ptr() override;
+ virtual uint8_t *get_auxbank_ptr() override;
virtual bool allow_dhr() override { return true; }
- virtual void write_c07x(address_space &space, UINT8 offset, UINT8 data) override;
+ virtual void write_c07x(address_space &space, uint8_t offset, uint8_t data) override;
private:
- UINT8 m_ram[8*1024*1024];
+ uint8_t m_ram[8*1024*1024];
int m_bank;
};