summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/m6m80011ap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/m6m80011ap.h')
-rw-r--r--src/devices/machine/m6m80011ap.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/machine/m6m80011ap.h b/src/devices/machine/m6m80011ap.h
index dfea6c06c14..cbd2e185669 100644
--- a/src/devices/machine/m6m80011ap.h
+++ b/src/devices/machine/m6m80011ap.h
@@ -43,7 +43,7 @@ class m6m80011ap_device : public device_t,
{
public:
// construction/destruction
- m6m80011ap_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ m6m80011ap_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// I/O operations
DECLARE_READ_LINE_MEMBER( read_bit );
@@ -63,16 +63,16 @@ protected:
virtual void nvram_write(emu_file &file) override;
private:
- UINT8 m_latch;
- UINT8 m_reset_line;
- UINT8 m_cmd_stream_pos;
- UINT32 m_current_cmd;
- UINT8 m_read_latch;
- UINT8 m_current_addr;
- UINT8 m_eeprom_we;
+ uint8_t m_latch;
+ uint8_t m_reset_line;
+ uint8_t m_cmd_stream_pos;
+ uint32_t m_current_cmd;
+ uint8_t m_read_latch;
+ uint8_t m_current_addr;
+ uint8_t m_eeprom_we;
eeprom_cmd_t m_eeprom_state;
- UINT16 m_eeprom_data[0x80];
+ uint16_t m_eeprom_data[0x80];
};