Code: Select all
mov ax, 0x0E00
mov ds, ax
jmp 0x0E00:0x0000
Code: Select all
mov ax, 0x0E00 ;Same as before
mov ds, ax ;Same as before
mov cs, ax ; different
jmp 0x0000 ;once again different
Code: Select all
mov ax, 0x0E00
mov ds, ax
jmp 0x0E00:0x0000
Code: Select all
mov ax, 0x0E00 ;Same as before
mov ds, ax ;Same as before
mov cs, ax ; different
jmp 0x0000 ;once again different
ohhhhhhh. Okay I get it now.Octocontrabass wrote:The MOV instruction cannot be used to load the CS register.