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.
Tree:
2587b2deb2
cl-refactor
master
opencl1.1
v0.10.0
v0.10.0.dev2
v0.10.0.dev3
v0.10.0rc1
v0.10.0rc2
v0.10.0rc3
v0.10.0rc4
v0.11.0
v0.11.0rc1
v0.11.0rc2
${ noResults }
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
|
|||
)
|