home *** CD-ROM | disk | FTP | other *** search
- program Chesster;
-
- {
- This is the main Chess-Ter module. It contains the main routine and
- all necessary unit inclusions.
- }
- uses
- Globals, crt, kb1, dos, Draw_Pcs;
-
- begin
- InitScrn;
- InitGame(Game_State);
- Draw_Board(Game_State);
- Show_Text(Game_State, Move_History);
- Get_Keyboard(Game_State);
- EndPrompt;
- end.
-
-