fix: resolve timing regressions
make sure to use fetch timings when fetching instructions
This commit is contained in:
@@ -73,8 +73,6 @@ pub fn fmt4(comptime op: u4) InstrFn {
|
||||
cpu.cpsr.z.write(result == 0);
|
||||
cpu.cpsr.c.write(overflow);
|
||||
cpu.cpsr.v.write(((op1 ^ result) & (op2 ^ result)) >> 31 & 1 == 1);
|
||||
|
||||
// FIXME: Pretty sure CMN Is the same
|
||||
},
|
||||
0x6 => {
|
||||
// SBC
|
||||
|
Reference in New Issue
Block a user