summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dsp56k/inst.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/dsp56k/inst.cpp')
-rw-r--r--src/devices/cpu/dsp56k/inst.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/dsp56k/inst.cpp b/src/devices/cpu/dsp56k/inst.cpp
index c7e6e2e6756..c07320fc5b3 100644
--- a/src/devices/cpu/dsp56k/inst.cpp
+++ b/src/devices/cpu/dsp56k/inst.cpp
@@ -7,12 +7,12 @@ namespace DSP56K
{
// Factory
std::unique_ptr<Instruction> Instruction::decodeInstruction(const Opcode* opc,
- const UINT16 word0,
- const UINT16 word1,
+ const uint16_t word0,
+ const uint16_t word1,
bool shifted)
{
- UINT16 w0 = word0;
- UINT16 w1 = word1;
+ uint16_t w0 = word0;
+ uint16_t w1 = word1;
if (shifted)
{