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: ┃ B T

⟦5af18c0e7⟧ TextFile

    Length: 1082 (0x43a)
    Types: TextFile
    Names: »B«

Derivation

└─⟦407de186f⟧ Bits:30000749 8mm tape, Rational 1000, RCFSUN
    └─ ⟦e5cd75ab4⟧ »DATA« 
        └─⟦this⟧ 

TextFile

package body Switches is

    function Help (S : in Switch) return String is
    begin
        case S is

            when Assembly_Listing =>
                return
                   "This switch allows the user to control the amount of compilation information " &
                      "that is generated in a compiler listing. The valid options for this " &
                      "switch are (CODE, MAP, ALL, NONE). [OPTION CODE - Include compiled " &
                      "object code in the compilation listing, in both assembly-language and " &
                      "hexadecimal forms]. [OPTION MAP - Include a (relocatable) memory map in the " &
                      "compilation listing showing the position of data objects]. " &
                      "[OPTION ALL - Include information as for both CODE and MAP]. " &
                      "[OPTION NONE - Do not list any object code or map information]." &
                      "(DEFAULT => NONE)";
            when others =>
                --etc..
                null;
        end case;
    end Help;

end Switches;