summaryrefslogtreecommitdiffstats
path: root/src/emu/devcpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/devcpu.h')
-rw-r--r--src/emu/devcpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/devcpu.h b/src/emu/devcpu.h
index d2f4a1f1394..bfd299ed5ff 100644
--- a/src/emu/devcpu.h
+++ b/src/emu/devcpu.h
@@ -54,7 +54,7 @@
//**************************************************************************
#define CPU_DISASSEMBLE_NAME(name) cpu_disassemble_##name
-#define CPU_DISASSEMBLE(name) offs_t CPU_DISASSEMBLE_NAME(name)(cpu_device *device, char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, int options)
+#define CPU_DISASSEMBLE(name) offs_t CPU_DISASSEMBLE_NAME(name)(cpu_device *device, char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, int options)
#define CPU_DISASSEMBLE_CALL(name) CPU_DISASSEMBLE_NAME(name)(device, buffer, pc, oprom, opram, options)
@@ -79,7 +79,7 @@ public:
protected:
// construction/destruction
- cpu_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);
+ cpu_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);
virtual ~cpu_device();
private:
@@ -88,7 +88,7 @@ private:
};
-typedef offs_t (*cpu_disassemble_func)(cpu_device *device, char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, int options);
+typedef offs_t (*cpu_disassemble_func)(cpu_device *device, char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, int options);
#endif /* __CPUINTRF_H__ */