mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Fixed: the word/long-word bit works the other way around.
This commit is contained in:
parent
75a7f7ab22
commit
b9933f512f
@ -1277,9 +1277,9 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
|
||||
target.full = int8_t(data.halves.low) + source; \
|
||||
\
|
||||
if(data.full & 0x800) { \
|
||||
target.full += int16_t(displacement.halves.low.full); \
|
||||
} else { \
|
||||
target.full += displacement.full; \
|
||||
} else { \
|
||||
target.full += int16_t(displacement.halves.low.full); \
|
||||
} \
|
||||
}
|
||||
case int(MicroOp::Action::CalcD8AnXn) | MicroOp::SourceMask: {
|
||||
|
Loading…
Reference in New Issue
Block a user