From 5f8200a6012a9107c83f9e7425c583298244fe3d Mon Sep 17 00:00:00 2001 From: ec798 Date: Tue, 12 Nov 2024 12:29:45 -0500 Subject: [PATCH] fix --- interp/src/flatten/structures/environment/env.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interp/src/flatten/structures/environment/env.rs b/interp/src/flatten/structures/environment/env.rs index bd9757bbe..60dc38f9b 100644 --- a/interp/src/flatten/structures/environment/env.rs +++ b/interp/src/flatten/structures/environment/env.rs @@ -1475,6 +1475,10 @@ impl + Clone> Simulator { ) -> DataDump { self.base.dump_memories(dump_registers, all_mems) } + + pub fn print_pc_string(&self) { + self.base.print_pc_string() + } } impl + Clone> BaseSimulator {