artur-zawlocki
10 years ago
4 changed files with 57 additions and 0 deletions
@ -0,0 +1 @@ |
|||
600a600181038060025900 |
@ -0,0 +1,27 @@ |
|||
;; Produces 1 2 3 4 5 6 7 8 9 10 on the stack and exits |
|||
|
|||
(asm |
|||
10 |
|||
|
|||
;; 2 |
|||
1 |
|||
DUP2 |
|||
SUB |
|||
DUP1 |
|||
2 |
|||
JUMPI |
|||
|
|||
;; stack = 1 2 3 4 5 6 7 8 9 10 |
|||
;;0 |
|||
;;MSTORE |
|||
;;1 |
|||
;;MSTORE |
|||
;;2 |
|||
;;MSTORE |
|||
;;3 |
|||
;;MSTORE |
|||
|
|||
STOP |
|||
) |
|||
|
|||
|
@ -0,0 +1 @@ |
|||
600a80600160800360a060025900 |
@ -0,0 +1,28 @@ |
|||
;; Produces 1 2 3 4 5 6 7 8 9 10 on the stack and exits |
|||
|
|||
(asm |
|||
10 |
|||
|
|||
;; 2 |
|||
DUP1 |
|||
1 |
|||
SWAP |
|||
SUB |
|||
DUP |
|||
2 |
|||
JUMPI |
|||
|
|||
;; stack = 1 2 3 4 5 6 7 8 9 10 |
|||
;;0 |
|||
;;MSTORE |
|||
;;1 |
|||
;;MSTORE |
|||
;;2 |
|||
;;MSTORE |
|||
;;3 |
|||
;;MSTORE |
|||
|
|||
STOP |
|||
) |
|||
|
|||
|
Loading…
Reference in new issue