DataMuseum.dk

Presents historical artifacts from the history of:

RC4000/8000/9000

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

See our Wiki for more about RC4000/8000/9000

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦307599966⟧ TextFile

    Length: 768 (0x300)
    Types: TextFile
    Names: »ptextline«

Derivation

└─⟦621cfb9a2⟧ Bits:30002817 RC8000 Dump tape fra HCØ.  Detaljer om "HC8000" projekt.
    └─⟦0364f57e3⟧ 
        └─⟦c9a650afb⟧ »hcøplib« 
└─⟦667bb35d6⟧ Bits:30007480 RC8000 Dump tape fra HCØ.
    └─⟦4334b4c0b⟧ 
        └─⟦c9a650afb⟧ »hcøplib« 
            └─⟦this⟧ 

TextFile

(*type textline=packecd array Æ1..80Å of iso*)
procedure readtextline(var f: text; var textl: textline);
var i: integer;
    ch: iso;
    t: textline;
begin
  i:=0;
  ch:=nl;
  while f^<=firstch do read(f,ch);
  repeat i:=i+1;
    read(f,ch);
    tÆiÅ:=ch;
  until (f^=nl) or (i=79);
  tÆi+1Å:=nl;
textl:=t;
end;
procedure writetextline(var f: text;t: textline);
var i: integer;
    ch: iso;
begin
i:=0;
repeat i:=i+1;
 ch:=tÆiÅ;
 write(f,ch);
until (ch=nl) or (i=80);
end;
▶EOF◀