summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/nmc9306.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/nmc9306.h')
-rw-r--r--src/devices/machine/nmc9306.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/machine/nmc9306.h b/src/devices/machine/nmc9306.h
index 92aba51965b..8812926189b 100644
--- a/src/devices/machine/nmc9306.h
+++ b/src/devices/machine/nmc9306.h
@@ -50,7 +50,7 @@ class nmc9306_device : public device_t,
{
public:
// construction/destruction
- nmc9306_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nmc9306_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_WRITE_LINE_MEMBER( cs_w );
DECLARE_WRITE_LINE_MEMBER( sk_w );
@@ -67,17 +67,17 @@ protected:
virtual void nvram_write(emu_file &file) override;
private:
- inline UINT16 read(offs_t offset);
- inline void write(offs_t offset, UINT16 data);
+ inline uint16_t read(offs_t offset);
+ inline void write(offs_t offset, uint16_t data);
inline void erase(offs_t offset);
- UINT16 m_register[16];
+ uint16_t m_register[16];
int m_bits;
int m_state;
- UINT8 m_command;
- UINT8 m_address;
- UINT16 m_data;
+ uint8_t m_command;
+ uint8_t m_address;
+ uint16_t m_data;
bool m_ewen;
int m_cs;
int m_sk;