1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 23:52:26 +00:00

Fix missung #undefs.

This commit is contained in:
Thomas Harte 2022-05-02 21:29:46 -04:00
parent 011506f00d
commit 17a2ce0464

View File

@ -1595,6 +1595,8 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
overflow_flag_ = carry_flag_ = 0; overflow_flag_ = carry_flag_ = 0;
} break; } break;
#undef sbcd
/* /*
Shifts and rotates. Shifts and rotates.
*/ */
@ -1859,7 +1861,7 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
#undef set_flags_w #undef set_flags_w
#undef set_flags_l #undef set_flags_l
#undef set_neg_zero_overflow #undef set_neg_zero_overflow
#undef set_net_zero #undef set_neg_zero
/* /*
RTE and RTR share an implementation. RTE and RTR share an implementation.