|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1082 (0x43a)
Types: TextFile
Names: »B«
└─⟦407de186f⟧ Bits:30000749 8mm tape, Rational 1000, RCFSUN
└─⟦e5cd75ab4⟧ »DATA«
└─⟦this⟧
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;