summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/dsp56k/dsp56dsm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/dsp56k/dsp56dsm.cpp')
-rw-r--r--src/devices/cpu/dsp56k/dsp56dsm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/dsp56k/dsp56dsm.cpp b/src/devices/cpu/dsp56k/dsp56dsm.cpp
index 283f712ecda..1fd102bdc66 100644
--- a/src/devices/cpu/dsp56k/dsp56dsm.cpp
+++ b/src/devices/cpu/dsp56k/dsp56dsm.cpp
@@ -18,8 +18,8 @@
/*****************************/
CPU_DISASSEMBLE( dsp56k )
{
- const UINT16 w0 = oprom[0] | (oprom[1] << 8);
- const UINT16 w1 = oprom[2] | (oprom[3] << 8);
+ const uint16_t w0 = oprom[0] | (oprom[1] << 8);
+ const uint16_t w1 = oprom[2] | (oprom[3] << 8);
// Decode and disassemble.
DSP56K::Opcode op(w0, w1);