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

⟦21772db70⟧ TextFile

    Length: 594 (0x252)
    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 Shared_Variable;
package Encapsulate is

    Max : constant := 2;

    subtype Index is Positive range 1 .. Max;

    type Composite is array (Index) of Integer;

    procedure Read (C : out Composite);

    procedure Write (C : in Composite);

    -- This is a help function for testing
    function Set_To (I : Integer) return Composite;

    -- This is a help function for testing
    function Value_Of (C : Composite) return Integer;

    -- This entry is used to serialize debug output to Standard_Output
    task Msg is
        entry Put (S : String);
    end Msg;

end Encapsulate;