From 6291ca52730014f5568bb2803e12882d1785a4ee Mon Sep 17 00:00:00 2001 From: fridtjof Date: Mon, 25 Aug 2025 00:09:35 +0200 Subject: [PATCH] wip! cpu: fixup empty restore_state_to_opc --- target/cr16c/cpu.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/target/cr16c/cpu.c b/target/cr16c/cpu.c index fee48363b1..6e12fa0001 100644 --- a/target/cr16c/cpu.c +++ b/target/cr16c/cpu.c @@ -169,8 +169,7 @@ bool cr16c_cpu_tlb_fill(CPUState *cs, vaddr addr, int size, void cr16c_restore_state_to_opc(CPUState *cpu, const TranslationBlock *tb, const uint64_t *data) { - qemu_printf("idk what im doing!!!!!!\n"); - // TODO figure out what this is supposed to do and implement it + cpu_env(cpu)->pc = data[0]; }