|
|
Programming Chess There are a lot of chess programs out there for which the source code is available. However there aren't any which are specifically designed with small memory hardware in mind. I decided (for the challenge) to write my own chess program from scratch. It's based around a standard negascout tree search. Because of the 32K limitation, I can't do things like store pre-searched positions, and the speed severly limits the depth to which I can search.
One of the programs whose source code I took a great deal of inspiration from is TSCP, Tom Kerrigan's Simple Chess Program. You can read more about it and download the very well written and clear source code from his homepage
|
|