I am just getting into assembly and was wondering is there any way of xor
'ing more than 1 byte at a time. I would like to do this in 1 command:
IDEAL
MODEL small
STACK 100h
DATASEG
msg db "I LIKE ASSEMBLY$"
CODESEG
start:
mov ax,@data
mov ds, ax
xor [msg],01001010b
exit:
mov ax, 4c00h
int 21h
END start
But with this piece of code it only xor
s the 'I'