m68000: the ext-derived over alu operation shoudl clear aluo (it's actually slightly more complicated but clearing is the end result). Fixes some address calculations in div (thanks qkumba again)

This commit is contained in:
Olivier Galibert 2023-01-18 10:45:52 +01:00
parent f0c82c8376
commit f13695ed78

View File

@ -561,6 +561,7 @@ protected:
inline void alu_over() {
m_isr = SR_V|SR_N;
m_aluo = 0;
}
inline void alu_asl(u16 a) {