From 68ea390db8e5977dcc84dc93daeb467ee243cb35 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 16 Oct 2020 13:34:42 +0300 Subject: Restyled ia32. --- ia32/arithmetic.sts | 103 ---------------------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 ia32/arithmetic.sts (limited to 'ia32/arithmetic.sts') 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 -- cgit v1.2.3