ok
im kinda new to this forum and new to assembly as well.
i was given a homework on tasm if someone could help me fix or add or delete some codes in wat ive place thank you very much..
program is about adding two input charactars like 1+1=2. ive been figuring this thing for 3 days still cant get it..my teacher didnt even showed us the add command so i jst made it up myself..
my code is
.model small
.stack 100h
.data
.code
start:
mov ah,1h ; input number
int 21h
mov dl,0ah
mov ah,1h ; input number
int 21h
mov dl,0ah
mov ah,2h
add bx,ax ; sum of the first input
int 21h
mov ax,4c00h
int 21h
end start