summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/oricext/oricext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/oricext/oricext.h')
-rw-r--r--src/devices/bus/oricext/oricext.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/oricext/oricext.h b/src/devices/bus/oricext/oricext.h
index 738850a40b5..bf423ad852c 100644
--- a/src/devices/bus/oricext/oricext.h
+++ b/src/devices/bus/oricext/oricext.h
@@ -25,7 +25,7 @@ class oricext_connector: public device_t,
public device_slot_interface
{
public:
- oricext_connector(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ oricext_connector(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~oricext_connector();
void set_cputag(const char *tag);
@@ -43,7 +43,7 @@ class oricext_device : public device_t,
public device_slot_card_interface
{
public:
- oricext_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);
+ oricext_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);
void set_cputag(const char *tag);
DECLARE_WRITE_LINE_MEMBER(irq_w);
@@ -53,8 +53,8 @@ protected:
m6502_device *cpu;
oricext_connector *connector;
memory_bank *bank_c000_r, *bank_e000_r, *bank_f800_r, *bank_c000_w, *bank_e000_w, *bank_f800_w;
- UINT8 *rom, *ram;
- UINT8 junk_read[8192], junk_write[8192];
+ uint8_t *rom, *ram;
+ uint8_t junk_read[8192], junk_write[8192];
virtual void device_start() override;
};