pim-simulato trace end of lmv

This commit is contained in:
ilgeco
2026-03-04 19:56:59 +01:00
parent 91ef6d9bc3
commit f24a60bfcd

View File

@@ -700,6 +700,7 @@ pub fn lmv(cores: &mut CPU, data: InstructionData) -> Result<InstructionStatus>
let local_memory = core.load::<u8>(r1_val, imm_len)?;
let tmp = local_memory[0].to_vec();
core.execute_store(rd_val, tmp.as_slice());
TRACER.lock().unwrap().post_lmv(cores, data);
Ok(InstructionStatus::Completed)
}