mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-13 11:13:07 +00:00
Minor
This commit is contained in:
parent
9c4947e0f0
commit
267f4162dd
@ -12,7 +12,8 @@ pub fn run(code: &[u8], initial_offset: usize, initial_stack: Vec<U256>) -> Vec<
|
||||
offset: initial_offset,
|
||||
stack: initial_stack,
|
||||
};
|
||||
while interpreter.offset < interpreter.code.len() {
|
||||
// Halt the execution if a jump to 0xdeadbeef was done.
|
||||
while interpreter.offset != 0xdeadbeef {
|
||||
interpreter.run_opcode();
|
||||
}
|
||||
interpreter.stack
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user