grafX2/cfg/ASCKEY.PAS
Adrien Destugues 306a004e36 First upload of the code.
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@2 416bcca6-2ee7-4201-b75f-2eb2f807beb1
2007-04-14 20:18:30 +00:00

11 lines
153 B
Plaintext

var touche:byte;
begin
repeat
asm
mov ah,8
int 21h
mov touche,al
end;
write(touche,' ');
until touche=27
end.