Skip to content

Commit

Permalink
fix booster aborting early
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwight Guth committed Mar 28, 2024
1 parent e29cf52 commit f90ec4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,11 +477,11 @@ We make sure the given arguments (to be interpreted as addresses) are with 160 b
// --------------------------------------------
rule <k> #addr [ OP:OpCode ] => .K ... </k>
<wordStack> WS => WS [ 0 <- #addr({WS [ 0 ]}:>Int) ] </wordStack>
requires isAddr1Op(OP)
requires isAddr1Op(OP) [preserves-definedness]
rule <k> #addr [ OP:OpCode ] => .K ... </k>
<wordStack> WS => WS [ 1 <- #addr({WS [ 1 ]}:>Int) ] </wordStack>
requires isAddr2Op(OP)
requires isAddr2Op(OP) [preserves-definedness]
rule <k> #addr [ OP:OpCode ] => .K ... </k>
requires notBool ( isAddr1Op(OP) orBool isAddr2Op(OP) )
Expand Down

0 comments on commit f90ec4b

Please sign in to comment.