I'm trying to read the value 1000h which can be found in the address 0000h:044Ch and put it in the ax
register by using the mov
instruction. Every time I get back another value than the expected 1000h.
This is the instruction I use in TASM:
mov ax, [word ptr 0000h:044Ch]
I have checked the vaue in ax
in the debugger.