home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
PASCAL
/
PNL006.ZIP
/
CHESSTER.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-03-17
|
351 b
|
20 lines
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.