aboutsummaryrefslogtreecommitdiff
path: root/ia32/stack.sts
blob: a8ac7497ad1ad5bbfa0bb8248b7f72a46d01a38b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
defasm drop
; pop eax
# 58 ?'
next

defasm dup
; push dword [esp]
# ff ?' # 34 ?' # 24 ?'
next

defasm over
; push dword [esp + 4]
# ff ?' # 74 ?' # 24 ?' # 4 ?'
next

defasm swap
; pop eax
# 58 ?'
; pop ebx
# 5b ?'
; push eax
# 50 ?'
; push ebx
# 53 ?'
next