aboutsummaryrefslogtreecommitdiff
path: root/ia32/stack.sts
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-10-18 18:22:31 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-10-18 18:22:31 +0300
commitdf0d6a4503a26508553510b4050eaa79f52e4e4e (patch)
tree2517b6070319270a4cb0df9dcf3814b16ecaece9 /ia32/stack.sts
parent9eadc7bac8863b7fd3a39edc9ba31cf4d3b5ab95 (diff)
downloadcryptrobber-df0d6a4503a26508553510b4050eaa79f52e4e4e.tar
cryptrobber-df0d6a4503a26508553510b4050eaa79f52e4e4e.tar.xz
cryptrobber-df0d6a4503a26508553510b4050eaa79f52e4e4e.zip
Another step to release.
Diffstat (limited to 'ia32/stack.sts')
-rw-r--r--ia32/stack.sts41
1 files changed, 0 insertions, 41 deletions
diff --git a/ia32/stack.sts b/ia32/stack.sts
deleted file mode 100644
index e884098..0000000
--- a/ia32/stack.sts
+++ /dev/null
@@ -1,41 +0,0 @@
-defasm top
- # 54 ?' ; push esp
-next
-
-defasm ref
- # 58 ?' ; pop eax
- # c1 ?' # e0 ?' # 2 ?' ; shl eax, 2
- # 01 ?' # e0 ?' ; add eax, esp
- # 50 ?' ; push eax
-next
-
-defasm get
- # 58 ?' ; pop eax
- # 8b ?' # 4 ?' # 84 ?' ; mov eax, [esp + 4 * eax]
- # 50 ?' ; push eax
-next
-
-defasm set
- # 5b ?' ; pop ebx
- # 58 ?' ; pop eax
- # 89 ?' # 04 ?' # 9c ?' ; mov [esp + 4 * ebx], eax
-next
-
-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