I'm using TASM, TLINK and TD (debugger) in DOSBox.
I've recently tried programming a simple ASM 8086 program that is suppose to print the value at address 0100h. When I print the result I get output that resembles:
My code is:
.MODEL SMALL
.STACK
.DATA
.CODE
.STARTUP
MOV SI,0100H
MOV WORD PTR[SI],31
MOV DX,0
MOV AH,09H
MOV DX,[SI]
INT 21H
MOV AH,4CH
INT 21H
END