blockchain-audit / labs

Our creative space
Other
1 stars 41 forks source link

T1-EVM Write 5 stack examples #13

Closed henry-hz closed 8 months ago

henry-hz commented 8 months ago

Play with :

ADD
POP
LT
DUP1
PUSH1
PUSH2
DUP2

Output:

PUSH1 0x40 // [40]
PUSH1 0x80 // [80,40]
PUSH1 0x60 // [60,80,40]
DUP1       // [60,60,80,40]
DUP1       // [60,60,60,80,40]
henry-hz commented 8 months ago

amazing! congratulations!