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

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

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

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