diff options
Diffstat (limited to 'src/devices/cpu/e132xs/e132xs.cpp')
| -rw-r--r-- | src/devices/cpu/e132xs/e132xs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/e132xs/e132xs.cpp b/src/devices/cpu/e132xs/e132xs.cpp index 0fea0efe55b..6f26c9daa8d 100644 --- a/src/devices/cpu/e132xs/e132xs.cpp +++ b/src/devices/cpu/e132xs/e132xs.cpp @@ -2858,7 +2858,7 @@ void hyperstone_device::hyperstone_sardi(struct hyperstone_device::regs_decode * int i; for( i = 0; i < N_VALUE; i++ ) { - val |= (U64(0x8000000000000000) >> i); + val |= (0x8000000000000000U >> i); } } @@ -2908,7 +2908,7 @@ void hyperstone_device::hyperstone_sard(struct hyperstone_device::regs_decode *d int i; for( i = 0; i < n; i++ ) { - val |= (U64(0x8000000000000000) >> i); + val |= (0x8000000000000000U >> i); } } @@ -2965,7 +2965,7 @@ void hyperstone_device::hyperstone_shldi(struct hyperstone_device::regs_decode * low_order = DREGF; val = concat_64(high_order, low_order); - SET_C( (N_VALUE)?(((val<<(N_VALUE-1))&U64(0x8000000000000000))?1:0):0); + SET_C( (N_VALUE)?(((val<<(N_VALUE-1))&0x8000000000000000U)?1:0):0); mask = ((((uint64_t)1) << (32 - N_VALUE)) - 1) ^ 0xffffffff; tmp = high_order << N_VALUE; @@ -3009,7 +3009,7 @@ void hyperstone_device::hyperstone_shld(struct hyperstone_device::regs_decode *d mask = ((((uint64_t)1) << (32 - n)) - 1) ^ 0xffffffff; val = concat_64(high_order, low_order); - SET_C( (n)?(((val<<(n-1))&U64(0x8000000000000000))?1:0):0); + SET_C( (n)?(((val<<(n-1))&0x8000000000000000U)?1:0):0); tmp = high_order << n; if( ((high_order & mask) && (!(tmp & 0x80000000))) || |
