mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Resolves a further handful of implicit type conversion warnings.
This commit is contained in:
parent
517cca251f
commit
bd7f00bd9c
@ -1981,7 +1981,7 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
|
||||
#define CalculateD8AnXn(data, source, target) {\
|
||||
const auto register_index = (data.full >> 12) & 7; \
|
||||
const RegisterPair32 &displacement = (data.full & 0x8000) ? address_[register_index] : data_[register_index]; \
|
||||
target.full = int8_t(data.halves.low) + source; \
|
||||
target.full = uint32_t(int8_t(data.halves.low)) + source; \
|
||||
\
|
||||
if(data.full & 0x800) { \
|
||||
target.full += displacement.full; \
|
||||
|
Loading…
Reference in New Issue
Block a user