I want to read the word at memory address 0000:FFFF, but when I debug my program:
org 0x7C00
mov ax, 0x0000
mov ds, ax
mov ax, [0xFFFF]
executing the last instruction mov ax, [0xFFFF], will change CS:IP to F000:E9DF. So strange...
I want to read the word at memory address 0000:FFFF, but when I debug my program:
org 0x7C00
mov ax, 0x0000
mov ds, ax
mov ax, [0xFFFF]
executing the last instruction mov ax, [0xFFFF], will change CS:IP to F000:E9DF. So strange...