This commit is contained in:
Johannes Theiner 2018-12-20 10:51:39 +01:00
parent 4c63a67fa9
commit 4c0acc96ee
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@ addsub:
mov eax, 0 mov eax, 0
mov operation, word [ebp+16] mov [operation], word [ebp+16]
add ax, word [ebp+8] add ax, word [ebp+8]
cmp operation, 0x2b cmp [operation], 0x2b
jne substract jne substract
add ax, word [ebp-12] add ax, word [ebp-12]