aboutsummaryrefslogtreecommitdiff
path: root/ia32/arithmetic.sts
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-10-16 13:34:42 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-10-16 13:34:42 +0300
commit68ea390db8e5977dcc84dc93daeb467ee243cb35 (patch)
tree4d503843299b68da2fd55b3a212f7afecadf6e4a /ia32/arithmetic.sts
parent405c4f104975e5456ce6b28ad31fd996d3f4b657 (diff)
downloadcryptrobber-68ea390db8e5977dcc84dc93daeb467ee243cb35.tar
cryptrobber-68ea390db8e5977dcc84dc93daeb467ee243cb35.tar.xz
cryptrobber-68ea390db8e5977dcc84dc93daeb467ee243cb35.zip
Restyled ia32.
Diffstat (limited to 'ia32/arithmetic.sts')
-rw-r--r--ia32/arithmetic.sts103
1 files changed, 0 insertions, 103 deletions
diff --git a/ia32/arithmetic.sts b/ia32/arithmetic.sts
deleted file mode 100644
index c9b4bf8..0000000
--- a/ia32/arithmetic.sts
+++ /dev/null
@@ -1,103 +0,0 @@
-defasm +
-; pop eax
-# 58 ?'
-; add [esp], eax
-# 01 ?' # 04 ?' # 24 ?'
-next
-
-defasm -
-; pop eax
-# 58 ?'
-; sub [esp], eax
-# 29 ?' # 04 ?' # 24 ?'
-next
-
-defasm /
-; pop ebx
-# 5b ?'
-; pop eax
-# 58 ?'
-; xor edx, edx
-# 31 ?' # d2 ?'
-; div ebx
-# f7 ?' # f3 ?'
-; push edx
-# 52 ?'
-; push eax
-# 50 ?'
-next
-
-defasm =
-; pop ebx
-# 5b ?'
-; pop eax
-# 58 ?'
-; cmp eax, ebx
-# 39 ?' # d8 ?'
-; sete al
-# 0f ?' # 94 ?' # c0 ?'
-; movzx eax, al
-# 0f ?' # b6 ?' # c0 ?'
-; push eax
-# 50 ?'
-next
-
-defasm !=
-; pop ebx
-# 5b ?'
-; pop eax
-# 58 ?'
-; cmp eax, ebx
-# 39 ?' # d8 ?'
-; sete al
-# 0f ?' # 95 ?' # c0 ?'
-; movzx eax, al
-# 0f ?' # b6 ?' # c0 ?'
-; push eax
-# 50 ?'
-next
-
-defasm !=
-; pop ebx
-# 5b ?'
-; pop eax
-# 58 ?'
-; cmp eax, ebx
-# 39 ?' # d8 ?'
-; sete al
-# 0f ?' # 95 ?' # c0 ?'
-; movzx eax, al
-# 0f ?' # b6 ?' # c0 ?'
-; push eax
-# 50 ?'
-next
-
-defasm <
-; pop ebx
-# 5b ?'
-; pop eax
-# 58 ?'
-; cmp eax, ebx
-# 39 ?' # d8 ?'
-; setb al
-# 0f ?' # 92 ?' # c0 ?'
-; movzx eax, al
-# 0f ?' # b6 ?' # c0 ?'
-; push eax
-# 50 ?'
-next
-
-defasm >
-; pop ebx
-# 5b ?'
-; pop eax
-# 58 ?'
-; cmp eax, ebx
-# 39 ?' # d8 ?'
-; seta al
-# 0f ?' # 97 ?' # c0 ?'
-; movzx eax, al
-# 0f ?' # b6 ?' # c0 ?'
-; push eax
-# 50 ?'
-next