I am trying some simple code that compiles under everything except for nasm and i just have no idea what i could do, if i add a byte ptr thing it says that it excpects end of line or a comma if i dont then it says operation size not specified
compiling to flat binary
[bits 16]
;since this is loaded at 0xf000:0 and the computer starts from there we
;need it to jump to the post which means a restart as it assumes real mode and all registers garbled
SECTION .text
_post:
mov [t],0x60
mov ah,[t]
mov [t],0x8000
mov ax,[t]
nop
section .data
t dw 0xF2F1