home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
mbug
/
mbug117.arc
/
TURBO.LBR
/
WHOAMI.PZS
/
WHOAMI.PAÓ
Wrap
Text File
|
1979-12-31
|
1KB
|
32 lines
program whoami;
var
coltest, banktest : byte;
iscolor, ispremium : boolean;
temp1, temp2 : byte;
const
colramstart = -2048;
begin
iscolor := False;
ispremium := False;
mem[colramstart] := 20;
port [8] :=64;
mem[colramstart] := 10;
port [8] :=0;
temp1 := mem[colramstart];
if temp1 = 10 then iscolor:= false else iscolor := True;
mem[colramstart] :=0;
port [28] := 129;
mem[colramstart] := 10;
port [28] := 128;
temp2 := mem[colramstart];
if temp2 = 10 then ispremium:= false else ispremium :=true;
if ispremium = True then writeln ('This Machine is a PREMIUM');
if iscolor = true then writeln ('This Machine is Colour');
if iscolor = False then writeln ('This Machine isn`t Colour');
if ispremium = false then writeln ('This Machine is a STANDARD Bee');
end.