Skip to content

Commit

Permalink
fix partially applied op readback
Browse files Browse the repository at this point in the history
  • Loading branch information
enricozb committed May 28, 2024
1 parent 1850379 commit 87bafbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ impl Numb {
_ => {
let typ = numb.get_typ();
let val = numb.get_u24();
format!("[{}{:07X}]", match typ {
format!("[{}0x{:07X}]", match typ {
hvm::OP_ADD => "+",
hvm::OP_SUB => "-",
hvm::FP_SUB => ":-",
Expand Down

0 comments on commit 87bafbe

Please sign in to comment.