| View previous topic :: View next topic |
| Author |
Message |
H.G.Muller

Joined: 10 Mar 2006 Posts: 12751 Location: Amsterdam
|
Post subject: Re: Two small in-register-lookups Posted: Tue Apr 24, 2007 9:48 pm |
|
|
You can XOR the squares first, and then do the test for one square.
| Code: |
bool sameSquareColor(unsigned int sq1, unsigned int sq2) {
sq1 ^= sq2;
return ( (0xAA55AA55 >> sq1) & 1);
}
|
|
|
| Back to top |
|
 |
|
| Subject |
Author |
Date/Time |
Two small in-register-lookups |
Gerd Isenberg |
Mon Apr 23, 2007 10:28 pm |
Re: Two small in-register-lookups |
J. Wesley Cleveland |
Tue Apr 24, 2007 9:08 am |
Re: Two small in-register-lookups |
H.G.Muller |
Tue Apr 24, 2007 9:51 am |
Re: Two small in-register-lookups |
Gerd Isenberg |
Tue Apr 24, 2007 11:00 am |
Re: Two small in-register-lookups |
Gerd Isenberg |
Tue Apr 24, 2007 10:58 am |
Re: Two small in-register-lookups |
H.G.Muller |
Tue Apr 24, 2007 12:37 pm |
Re: Two small in-register-lookups |
Gerd Isenberg |
Tue Apr 24, 2007 6:36 pm |
Re: Two small in-register-lookups |
Gerd Isenberg |
Tue Apr 24, 2007 8:11 pm |
Re: Two small in-register-lookups |
H.G.Muller |
Tue Apr 24, 2007 9:48 pm |
Re: Two small in-register-lookups |
Gerd Isenberg |
Tue Apr 24, 2007 9:57 pm |
Re: Two small in-register-lookups |
Tord Romstad |
Wed Apr 25, 2007 7:40 am |
Re: Two small in-register-lookups |
H.G.Muller |
Wed Apr 25, 2007 9:49 am |
Re: Two small in-register-lookups |
Tord Romstad |
Wed Apr 25, 2007 10:53 am |
Re: Two small in-register-lookups |
H.G.Muller |
Wed Apr 25, 2007 12:01 pm |
Re: Two small in-register-lookups |
Gerd Isenberg |
Fri Apr 27, 2007 7:41 pm |
Re: Two small in-register-lookups |
Gerd Isenberg |
Fri Apr 27, 2007 7:44 pm |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|