DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

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

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T V

⟦ecd61a235⟧ TextFile

    Length: 538 (0x21a)
    Types: TextFile
    Names: »V«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

with Bounded_String;
with List_Generic;
package Definitions is

    subtype Line is Bounded_String.Variable_String (80);

    package Lines is new List_Generic (Line);

    package Step is new List_Generic (Lines.List);

    type Module_Information is
        record
            Name : Line;
            Module : Step.List;
        end record;

    package Module is new List_Generic (Module_Information);

    All_Modules : Module.List;

    procedure Initialize (File_Name : String);

    Unable_To_Parse : exception;

end Definitions;