define pointer size

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2023-12-08 19:11:00 +01:00
parent 80e14f182d
commit c04ae9a5c3
4 changed files with 128 additions and 86 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ fn main() {
let bytecode = hex::decode(hexcode.trim()).unwrap();
let instructions = bytecode.disassemble();
Program::new(instructions).dot(BasicBlockFormatOption::Ir);
Program::new(instructions).dot(BasicBlockFormatOption::ByteCode);
}