A89: Re: XOR (or EOR) in C
[Prev][Next][Index][Thread]
A89: Re: XOR (or EOR) in C
----- Original Message -----
From: <JHill8075@aol.com>
To: <assembly-89@lists.ticalc.org>
Sent: Sunday, April 16, 2000 8:59 PM
Subject: A89: XOR (or EOR) in C
>
> Does anyone know how to use XOR (the command is EOR is 68K ASM) in C? AND
is
> && in C, and I know what OR and NOT are, but I have no idea what XOR is
and I
> need it for the program I'm working on. Thanks.
&& Logical AND
|| Logical OR
! Logical NOT
& Bitwise AND
| Bitwise OR
~ Bitwise NOT
^ Bitwise XOR
References: