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

⟦f2833f1f0⟧ TextFile

    Length: 854 (0x356)
    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

package Remote_Global is  -- for explicit control of optimization

    A_One : Integer; --        a constant 1 that can not be optimized away
--                           A_ONE is intentionally visible. DO NOT CHANGE IT
--
    Global : Integer := 1; -- global object can not be optimized away
--                           GLOBAL is changed by measurement programs
--                           the initialization to 1 is used in the body
--                           but could be changed by elaboration order
--
    procedure Remote; --       do to calls to this procedure, no compiler
--                           can optimize away the computation an GLOBAL
--
    procedure Check_Time (Test_Duration : in Duration);
--  Just print message if TEST_DURATION less then
--                           100 * SYSTEM.TICK  or DURATION'SMALL
--
end Remote_Global;