|
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 - downloadIndex: ┃ B T ┃
Length: 2776 (0xad8) Types: TextFile Names: »B«
└─⟦516dceb10⟧ Bits:30000751 8mm tape, Rational 1000, RCI_VADS └─ ⟦9a14c9417⟧ »DATA« └─⟦this⟧
with Log; with Operational_Characteristics; with Profile; with Program; with Rcf_Customization; with Rcf_Customization_Interface; with Semantic_Characteristics; with Simple_Status; with Telnet_Characteristics; with Universal; package body M68k_Sunos_Vdx is package Op renames Operational_Characteristics; package Tc renames Telnet_Characteristics; package Sc renames Semantic_Characteristics; package Predefined renames Sc.Predefined_Environment_Characteristics; package Pragmas renames Sc.Pragma_Characteristics; package Attributes renames Sc.Attribute_Characteristics; package Rep_Specs renames Sc.Rep_Spec_Characteristics; package Rci renames Rcf_Customization_Interface; package Ss renames Simple_Status; package Checking renames Sc.Checking; package Text renames Sc.Text; T_Name : constant String := "M68k_Sunos_Vdx"; function Get_Pragma_Info return Pragmas.Object is separate; function Get_Rep_Spec_Info return Rep_Specs.Object is separate; function Get_Predefined_Info return Predefined.Object is separate; function Get_Attribute_Info return Attributes.Object is separate; function Get_Operational_Info return Op.Object is separate; function Get_Telnet_Info return Tc.Object is separate; procedure Register is Status : Simple_Status.Condition; begin Rci.Initialize (T_Name, Status); if Ss.">" (Ss.Severity (Status), Ss.Normal) then Log.Put_Line (Ss.Name (Status), Profile.Warning_Msg); if Ss.">" (Ss.Severity (Status), Ss.Warning) then return; end if; end if; Rcf_Customization.Register (Target => T_Name, The_Operational_Characteristics => Get_Operational_Info, The_Predefined_Environment_Characteristics => Get_Predefined_Info, The_Pragma_Characteristics => Get_Pragma_Info, The_Attribute_Characteristics => Get_Attribute_Info, The_Rep_Spec_Characteristics => Get_Rep_Spec_Info, The_Telnet_Characteristics => Get_Telnet_Info); Program.Run_Job ("""!targets.implementation.rcf_customization." & "M68K_Sunos_Vdx'view.units""" & ".register_all_extensions(""" & T_Name & """);", Context => "!targets.implementation.rcf_customization." & "M68K_Sunos_Vdx'view", Options => "Name => (" & T_Name & "_Library_Extensions), " & "output => !machine.temporary.rcf_library_register_log"); end Register; procedure Unregister is begin Rcf_Customization.Unregister (T_Name); end Unregister; end M68k_Sunos_Vdx;