refactor: replace fmt ostreams with stringify

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-09-27 01:24:32 +05:30
parent ed01ed80cd
commit b55f6ee16b
11 changed files with 87 additions and 116 deletions

View File

@@ -15,7 +15,7 @@ class CpuFixture {
protected:
void exec(arm::InstructionData data, Condition condition = Condition::AL) {
arm::Instruction instruction(condition, data);
cpu.exec_arm(instruction);
cpu.exec(instruction);
}
void reset(uint32_t value = 0) {