home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 127.STATUS.INC < prev    next >
Text File  |  1992-07-12  |  493b  |  18 lines

  1. function status( i : integer ) : string;
  2. begin
  3.   case i of
  4.      NotAPort : status := 'is not a port';
  5.      0        : status := 'BBB';
  6.      1        : status := 'SBB';
  7.      2        : status := 'BSB';
  8.      3        : status := 'SSB';
  9.      4        : status := 'BBS';
  10.      5        : status := 'SBS';
  11.      6        : status := 'BSS';
  12.      7        : status := 'SSS';
  13.      Class0   : status := 'HFS';
  14.      else
  15.                 status := 'impossible status!';
  16.   end; {case}
  17. end;
  18.