home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
tsr
/
tsrunit
/
test.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1989-09-18
|
268 b
|
19 lines
uses dos,crt,tsr;
{$M $0800,0,0}
var
keycode:byte;
{$F+} function tssy:word;{$F-}
begin
window(10,2,70,18);
clrscr;
write('Hello World');
readln;
tssy:=0;
end;
begin
keycode:=altkey+ctrlkey;
tsrinstall('Test Program #1',tssy,keycode,'H');
end.