summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99_peb/memex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99_peb/memex.h')
-rw-r--r--src/devices/bus/ti99_peb/memex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99_peb/memex.h b/src/devices/bus/ti99_peb/memex.h
index b457fb78c95..f63f1b62044 100644
--- a/src/devices/bus/ti99_peb/memex.h
+++ b/src/devices/bus/ti99_peb/memex.h
@@ -22,7 +22,7 @@ extern const device_type TI99_MEMEX;
class geneve_memex_device : public ti_expansion_card_device
{
public:
- geneve_memex_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ geneve_memex_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ8Z_MEMBER(readz) override;
DECLARE_WRITE8_MEMBER(write) override;
@@ -38,7 +38,7 @@ protected:
private:
bool access_enabled(offs_t offset);
required_device<ram_device> m_ram;
- UINT8 m_switches;
+ uint8_t m_switches;
};
#endif