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 - download
Index: ┃ A T

⟦9f0b8faf7⟧ TextFile

    Length: 769 (0x301)
    Types: TextFile
    Names: »ADA_TASK_MODULE«

Derivation

└─⟦afbc8121e⟧ Bits:30000532 8mm tape, Rational 1000, MC68020_OS2000 7_2_2
    └─ ⟦77aa8350c⟧ »DATA« 
        └─⟦f794ecd1d⟧ 
            └─⟦24d1ddd49⟧ 
                └─⟦this⟧ 

TextFile

program "Ada_Task_Module_Linker_Commands" is

    link "ada_task_module_object";

    collection code is (ada_task_module);
                                                      
    collection DEBUG_HDR_CU     is (DEBUG_HDR_CU);
    collection DEBUG_BODY       is (DEBUG_BODY);

    segment code is
        memory bounds are (0:16#FFF_FFFF#);
        place code;
    end;

    segment debug_hdrs is
         memory bounds are (0:16#FFF_FFFF#);

         place DEBUG_HDR_CU;
         
    end;

    segment debug_body is
         memory bounds are (0:16#FFF_FFFF#);

         place DEBUG_BODY;
         
    end;
    
    retain_dead_code from module "os2000_task_module";
    retain_dead_code from segment debug_hdrs;
    retain_dead_code from segment debug_body;
end;