DataMuseum.dk

Presents historical artifacts from the history of:

Bogika Butler

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Bogika Butler

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦b800b43f3⟧ TextFile

    Length: 2176 (0x880)
    Types: TextFile
    Names: »LNKDF3.PAS«

Derivation

└─⟦94d85ef43⟧ Bits:30009789/_.ft.Ibm2.50006584.imd Mogens Pelles Zilog 80,000 / EOS projekt
    └─⟦this⟧ »LNKDF3.PAS« 
└─⟦da8d53b95⟧ Bits:30009789/_.ft.Ibm2.50006585.imd Mogens Pelles Zilog 80,000 / EOS projekt
    └─⟦this⟧ »LNKDF3.PAS« 
└─⟦dbb5cfece⟧ Bits:30009789/_.ft.Ibm2.50007354.imd Mogens Pelles Zilog 80,000 / EOS projekt
    └─⟦this⟧ »LNKDF3.PAS« 

TextFile

(******************************************************************************)
(*                                                                            *)
(*   Copyright (1985) by Metanic Aps., Denmark                                *)
(*                                                                            *)
(*   Author: Lars Gregers Jakobsen.                                           *)
(*                                                                            *)
(******************************************************************************)

   PROCEDURE TSTnmt(Inx: NameTableIndexType
                );

      VAR
         i : 0..9;

     BEGIN (*TSTnmt*)
      write(TestOut, 'NMTÆ', inx:1
                   , ';../', CurrentNameTableIndex:1,'Å=(' );
      FOR i := 0 TO 7 DO
         IF (Inx + i) IN (.1..MaxNameTableIndex.) THEN
            TSTasc( NameTable(. Inx+i .) )
         ELSE
            write(TestOut, '-');
      write(TestOut, '/');
      IF Inx IN (.1..MaxNameTableIndex.) THEN
         TSThex( NameTable(. Inx .) )
      ELSE
         write(TestOut, '--');
      FOR i := 1 TO 7 DO
        BEGIN
         write(TestOut, '-');
         IF (Inx + i) IN (.1..MaxNameTableIndex.) THEN
            TSThex( NameTable(. Inx+i .) )
         ELSE
            write(TestOut, '--');
        END;
      writeln(TestOut, ')' )
     END;  (*TSTnmt*)

   PROCEDURE TSTsbt(Inx: SymbolTableIndexType
                );

     BEGIN (*TSTsbt*)
      WITH SymbolTable(.Inx.) DO
        BEGIN
         write(TestOut, 'SBTÆ', Inx:1
                      , '/', LatestInsert:1
                      , '/', CurrentSymbolCount:1
                      , 'Å=(Module#=', ModuleNo:1, ' '
                      , 'NameRef=', NameReference:1, ' '
                      , 'SortLink=', SortLink:1, ')'
                );
        END
     END;  (*TSTsbt*)

(*                                                                            *)
(*                                                                            *)
(******************************************************************************)
«eof»