This time I have a simple question, how do I access a specific byte in memory?
I've tried:
mov cx, addr_seg
mov es, cx
mov cx, addr_off
mov bx, [es:cx]
But this simply gives me "invalid effective address", so I assume I've done something wrong.
Can somebody please tell me how to do this? Thanks in advance.