a5: kommentare geändert
This commit is contained in:
parent
2dd692df86
commit
f4d7832b48
|
@ -11,16 +11,16 @@ addsub:
|
||||||
|
|
||||||
mov eax, 0
|
mov eax, 0
|
||||||
|
|
||||||
mov bx, word [ebp+16];Operation
|
mov bx, word [ebp+16] ;Operation
|
||||||
mov ax, word [ebp+8];op1
|
mov ax, word [ebp+8] ;op1
|
||||||
|
|
||||||
cmp bx, 0x2b
|
cmp bx, 0x2b
|
||||||
jne substract
|
jne substract
|
||||||
|
|
||||||
add ax, word [ebp+12];op2
|
add ax, word [ebp+12] ;op2
|
||||||
jmp return
|
jmp return
|
||||||
|
|
||||||
substract: sub ax, word [ebp+12];op2
|
substract: sub ax, word [ebp+12] ;op2
|
||||||
|
|
||||||
return:
|
return:
|
||||||
pop bx
|
pop bx
|
||||||
|
|
Loading…
Reference in New Issue