DataMuseum.dk

Presents historical artifacts from the history of:

RegneCentralen RC759 "Piccoline"

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

See our Wiki for more about RegneCentralen RC759 "Piccoline"

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦e0e5bd870⟧ TextFile

    Length: 896 (0x380)
    Types: TextFile
    Names: »TESTFG.PAS«

Derivation

└─⟦c042bf94c⟧ Bits:30002694 SW1435 RcFont Release 1.3
└─⟦c042bf94c⟧ Bits:30005758 SW1435 RcFont Release 1.3
    └─ ⟦this⟧ »TESTFG.PAS« 

TextFile



PROGRAM testfq;

(*$Ifontutil*)

VAR
 fgtekst: TEXT;
  
BEGIN

 assign(fgtekst, 'fgfile.tst');
 rewrite(fgtekst);
 writeln(fgtekst, '%%h2 b2 r2 <');
 writeln(fgtekst, 'TEKST FRA FIL');
 close(fgtekst);

 open_font_graphics;           (* open queues for fontgraphics *)

 writefg(@27'A1');             (* select std characterset *)
 writefg('%%b2 h1 r1 >');      (* command line *)
 writefg('TEKST FRA PROGRAM'); (* textline *)
 writefg(@27'Astd914');        (* select characterset: std914 *)
 writefg(@27'Ffgfile.tst');    (* print file: fgfile.tst *)
 writeln(lst, 'ALMINDELIG TEXT');
 writefg(@27'Bus88');          (* add new characterset: us88 *)
 writefg('%%b3 h2 r2');
 writefg('TEKST MED ÆØÅ æøå');
 writefg(@27'E');             (* Abort the fontqueue process *)
END.   «eof»