summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/snes/rom21.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/snes/rom21.h')
-rw-r--r--src/devices/bus/snes/rom21.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/snes/rom21.h b/src/devices/bus/snes/rom21.h
index 2196e90ca56..befd130f02f 100644
--- a/src/devices/bus/snes/rom21.h
+++ b/src/devices/bus/snes/rom21.h
@@ -13,8 +13,8 @@ class sns_rom21_device : public device_t,
{
public:
// construction/destruction
- sns_rom21_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);
- sns_rom21_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ sns_rom21_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);
+ sns_rom21_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
@@ -31,7 +31,7 @@ class sns_rom21_srtc_device : public sns_rom21_device
{
public:
// construction/destruction
- sns_rom21_srtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ sns_rom21_srtc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
@@ -51,12 +51,12 @@ public:
};
void update_time();
- UINT8 srtc_weekday(UINT32 year, UINT32 month, UINT32 day);
+ uint8_t srtc_weekday(uint32_t year, uint32_t month, uint32_t day);
//this is now allocated in the main snes cart class, to allow saving to nvram
- //UINT8 m_rtc_ram[13];
- INT32 m_mode;
- INT8 m_index;
+ //uint8_t m_rtc_ram[13];
+ int32_t m_mode;
+ int8_t m_index;
};