summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/spchrom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/spchrom.h')
-rw-r--r--src/devices/machine/spchrom.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/spchrom.h b/src/devices/machine/spchrom.h
index c72af249529..14c9824c267 100644
--- a/src/devices/machine/spchrom.h
+++ b/src/devices/machine/spchrom.h
@@ -14,7 +14,7 @@ class speechrom_device : public device_t
{
public:
// construction/destruction
- speechrom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ speechrom_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
/// TODO: implement bus behaviour
int read(int count);
@@ -26,7 +26,7 @@ public:
virtual void device_start() override;
private:
- UINT8 *m_speechrom_data; /* pointer to speech ROM data */
+ uint8_t *m_speechrom_data; /* pointer to speech ROM data */
unsigned int m_speechROMlen; /* length of data pointed by speechrom_data, from 0 to 2^18 */
unsigned int m_speechROMaddr; /* 18 bit pointer in ROM */
int m_load_pointer; /* which 4-bit nibble will be affected by load address */