summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nubus/nubus_spec8.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nubus/nubus_spec8.h')
-rw-r--r--src/devices/bus/nubus/nubus_spec8.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/bus/nubus/nubus_spec8.h b/src/devices/bus/nubus/nubus_spec8.h
index 61af612c7a6..0259cd64140 100644
--- a/src/devices/bus/nubus/nubus_spec8.h
+++ b/src/devices/bus/nubus/nubus_spec8.h
@@ -21,15 +21,15 @@ class nubus_spec8s3_device :
{
public:
// construction/destruction
- nubus_spec8s3_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- nubus_spec8s3_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);
+ nubus_spec8s3_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ nubus_spec8s3_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);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
virtual const tiny_rom_entry *device_rom_region() const override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
- UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
protected:
// device-level overrides
virtual void device_start() override;
@@ -41,18 +41,18 @@ protected:
DECLARE_WRITE32_MEMBER(vram_w);
public:
- std::vector<UINT8> m_vram;
- UINT32 *m_vram32;
- UINT32 m_mode, m_vbl_disable;
- UINT32 m_palette[256], m_colors[3], m_count, m_clutoffs;
+ std::vector<uint8_t> m_vram;
+ uint32_t *m_vram32;
+ uint32_t m_mode, m_vbl_disable;
+ uint32_t m_palette[256], m_colors[3], m_count, m_clutoffs;
emu_timer *m_timer;
std::string m_assembled_tag;
private:
- //UINT32 m_7xxxxx_regs[0x100000/4];
+ //uint32_t m_7xxxxx_regs[0x100000/4];
//int m_width, m_height, m_patofsx, m_patofsy;
- //UINT32 m_vram_addr, m_vram_src;
- //UINT8 m_fillbytes[256];
+ //uint32_t m_vram_addr, m_vram_src;
+ //uint8_t m_fillbytes[256];
bool m_vbl_pending;
int m_parameter;
};