diff formats/src/th06/std.rs @ 779:ee09657d3789

Replace the stage parser with the Rust one
author Link Mauve <linkmauve@linkmauve.fr>
date Sat, 08 Nov 2025 19:29:33 +0100
parents 94033091458b
children
line wrap: on
line diff
--- a/formats/src/th06/std.rs
+++ b/formats/src/th06/std.rs
@@ -218,7 +218,6 @@
     // TODO: replace this assert with a custom error.
     assert_eq!(size, 12);
     let (i, instr) = parse_instruction_args(i, opcode)?;
-    println!("{} {:?}", time, instr);
     let call = Call { time, instr };
     Ok((i, call))
 }