I have issues in assembler language: how to add byte and word and print out the result. For example FFFF+FF. The result would be 100FE. The problem is that I dont know how to print out the whole result since it is bigger than one word. I can print only 00FE, where is the 1?
Example (b1 is a byte, w1 is a word):
mov ah, 00h
mov al, b1
mov bx, w2
add ax, bx