XOR

DOS specific questions.
Post Reply
Dinosaur
Posts: 1481
Joined: Jul 24, 2005 1:13
Location: Hervey Bay (.au)

XOR

Post by Dinosaur »

Hi all

Is xor supported with in-line asm.
I am getting an error on:

Code: Select all

xor   eax,eax
ASMRoutines.bas(47) : error 40: Expected 'END SUB' or 'END FUNCTION', found: 'XOR'

XOR EAX,EAX
^
Regards

Edit:
Igore me I am babbling.
DrV
Site Admin
Posts: 2116
Joined: May 27, 2005 18:39
Location: Midwestern USA
Contact:

Post by DrV »

Code: Select all

asm xor eax, eax
Dinosaur
Posts: 1481
Joined: Jul 24, 2005 1:13
Location: Hervey Bay (.au)

Post by Dinosaur »

Drv
That was the babbling, I simply forgot
asm
code
end asm
Post Reply