a5: kommentare geändert

This commit is contained in:
Johannes Theiner 2018-12-20 11:30:29 +01:00
parent 2dd692df86
commit f4d7832b48
1 changed files with 4 additions and 4 deletions

View File

@ -11,16 +11,16 @@ addsub:
mov eax, 0
mov bx, word [ebp+16];Operation
mov ax, word [ebp+8];op1
mov bx, word [ebp+16] ;Operation
mov ax, word [ebp+8] ;op1
cmp bx, 0x2b
jne substract
add ax, word [ebp+12];op2
add ax, word [ebp+12] ;op2
jmp return
substract: sub ax, word [ebp+12];op2
substract: sub ax, word [ebp+12] ;op2
return:
pop bx