mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-11 08:30:55 +00:00
Eliminates another couple of implicit type conversion warnings.
This commit is contained in:
parent
11ab021672
commit
7cc5afd798
@ -1773,8 +1773,8 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
|
||||
// If this is RTR, patch out the is_supervisor bit.
|
||||
if(decoded_instruction_.full == 0x4e77) {
|
||||
source_bus_data_[0].full =
|
||||
(source_bus_data_[0].full & ~(1 << 13)) |
|
||||
(is_supervisor_ << 13);
|
||||
(source_bus_data_[0].full & uint32_t(~(1 << 13))) |
|
||||
uint32_t(is_supervisor_ << 13);
|
||||
}
|
||||
set_status(source_bus_data_[0].full);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user