You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
230 B
16 lines
230 B
;; Direct JUMP.
|
|
;; output: memory[1] = 1
|
|
|
|
(asm
|
|
5 ;; 0
|
|
14 ;; 2
|
|
JUMP ;; 4 --> 14
|
|
JUMPDEST ;; 5
|
|
1 ;; 6
|
|
1 ;; 8
|
|
MSTORE ;; 10
|
|
STOP ;; 11
|
|
15 ;; 12
|
|
JUMP ;; 14 --> 5
|
|
STOP ;; 15
|
|
)
|