summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/timekpr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/timekpr.h')
-rw-r--r--src/devices/machine/timekpr.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/devices/machine/timekpr.h b/src/devices/machine/timekpr.h
index e0e9aa6e60d..a9ecd6ae6b5 100644
--- a/src/devices/machine/timekpr.h
+++ b/src/devices/machine/timekpr.h
@@ -59,7 +59,7 @@ class timekeeper_device : public device_t,
{
protected:
// construction/destruction
- timekeeper_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, int size);
+ timekeeper_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, int size);
public:
DECLARE_WRITE8_MEMBER( write );
@@ -81,18 +81,18 @@ private:
void counters_from_ram();
// internal state
- UINT8 m_control;
- UINT8 m_seconds;
- UINT8 m_minutes;
- UINT8 m_hours;
- UINT8 m_day;
- UINT8 m_date;
- UINT8 m_month;
- UINT8 m_year;
- UINT8 m_century;
-
- std::vector<UINT8> m_data;
- optional_region_ptr<UINT8> m_default_data;
+ uint8_t m_control;
+ uint8_t m_seconds;
+ uint8_t m_minutes;
+ uint8_t m_hours;
+ uint8_t m_day;
+ uint8_t m_date;
+ uint8_t m_month;
+ uint8_t m_year;
+ uint8_t m_century;
+
+ std::vector<uint8_t> m_data;
+ optional_region_ptr<uint8_t> m_default_data;
protected:
int m_size;
@@ -111,37 +111,37 @@ protected:
class m48t02_device : public timekeeper_device
{
public:
- m48t02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ m48t02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class m48t35_device : public timekeeper_device
{
public:
- m48t35_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ m48t35_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class m48t37_device : public timekeeper_device
{
public:
- m48t37_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ m48t37_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class m48t58_device : public timekeeper_device
{
public:
- m48t58_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ m48t58_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class mk48t08_device : public timekeeper_device
{
public:
- mk48t08_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ mk48t08_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class mk48t12_device : public timekeeper_device
{
public:
- mk48t12_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ mk48t12_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
// device type definition