diff options
Diffstat (limited to 'src/devices/cpu/tms32082/dis_pp.cpp')
-rw-r--r-- | src/devices/cpu/tms32082/dis_pp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/tms32082/dis_pp.cpp b/src/devices/cpu/tms32082/dis_pp.cpp index b32b681df3a..bdd6dfc9c97 100644 --- a/src/devices/cpu/tms32082/dis_pp.cpp +++ b/src/devices/cpu/tms32082/dis_pp.cpp @@ -435,10 +435,10 @@ static offs_t tms32082_disasm_pp(std::ostream &stream, offs_t pc, const uint8_t case 0xe: case 0xf: { - if ((op & U64(0xfaa8100000000000)) == U64(0x8800000000000000)) + if ((op & 0xfaa8100000000000U) == 0x8800000000000000U) { int operation = (op >> 39) & 0x1f; - uint64_t parallel_xfer = (op & U64(0x0000007fffffffff)); + uint64_t parallel_xfer = (op & 0x0000007fffffffffU); switch (operation) { @@ -462,7 +462,7 @@ static offs_t tms32082_disasm_pp(std::ostream &stream, offs_t pc, const uint8_t case 0: case 1: // Base set ALU (5-bit immediate) { - uint64_t parallel_xfer = (op & U64(0x0000007fffffffff)); + uint64_t parallel_xfer = (op & 0x0000007fffffffffU); int dst = (op >> 48) & 7; int src1 = (op >> 45) & 7; @@ -541,7 +541,7 @@ static offs_t tms32082_disasm_pp(std::ostream &stream, offs_t pc, const uint8_t case 2: // Base set ALU (reg src2) { - uint64_t parallel_xfer = (op & U64(0x0000007fffffffff)); + uint64_t parallel_xfer = (op & 0x0000007fffffffffU); int dst = (op >> 48) & 7; int src1 = (op >> 45) & 7; |