summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nubus/nubus_48gc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nubus/nubus_48gc.h')
-rw-r--r--src/devices/bus/nubus/nubus_48gc.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/nubus/nubus_48gc.h b/src/devices/bus/nubus/nubus_48gc.h
index 32c333113f7..6a435f8c098 100644
--- a/src/devices/bus/nubus/nubus_48gc.h
+++ b/src/devices/bus/nubus/nubus_48gc.h
@@ -21,14 +21,14 @@ class jmfb_device :
{
public:
// construction/destruction
- jmfb_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);
+ jmfb_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);
screen_device *m_screen;
emu_timer *m_timer;
@@ -41,10 +41,10 @@ protected:
DECLARE_WRITE32_MEMBER(mac_48gc_w);
public:
- std::vector<UINT8> m_vram;
- UINT32 m_mode, m_vbl_disable, m_toggle, m_stride, m_base;
- UINT32 m_palette[256], m_colors[3], m_count, m_clutoffs;
- UINT32 m_registers[0x100];
+ std::vector<uint8_t> m_vram;
+ uint32_t m_mode, m_vbl_disable, m_toggle, m_stride, m_base;
+ uint32_t m_palette[256], m_colors[3], m_count, m_clutoffs;
+ uint32_t m_registers[0x100];
int m_xres, m_yres;
bool m_is824;
std::string m_assembled_tag;
@@ -53,13 +53,13 @@ public:
class nubus_48gc_device : public jmfb_device
{
public:
- nubus_48gc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nubus_48gc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class nubus_824gc_device : public jmfb_device
{
public:
- nubus_824gc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nubus_824gc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual const tiny_rom_entry *device_rom_region() const override;
};