yah - to use AH=0, the CS segment should point to the PSP
kinda hard in an EXE - lol - i guess you could do it, though
in the old days (really old days), they used to push the PSP and a 0 at the beginning of the EXE
then, do a RETF to terminate
that took you to PSP:0, where there is an INT 20h instruction
he has a .exit in there, so.....
i suspect what the OP is really after is a way to display the results of an ADD
which, the number needs to be converted to ASCII, then...
because it is a single digit, INT 21h, AH=2 could be used
mov ax,2
mov dx,3
add dx,ax
or dl,30h
mov ah,2
int 21h