home *** CD-ROM | disk | FTP | other *** search
- package SYMBOLIC_DEBUGGER is
- -- This is an interactive debugging tool that provides debugging and
- -- diagnostic aids at the Ada statement level.
-
- type debug_instructions is -- format to be determined
- -- a set of initial instructions for the debugger.
-
- procedure debug (source_file : in Ada_SOURCE_FILE_TYPE;
- report_file : out REPORT_FILE_TYPE:=STANDARD_OUTPUT;
- command_file: in FILE_TYPE := STANDARD_INPUT);
- -- is the procedure to invoke the debugger.
-
- package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (DEVELOPING_ORGANIZATION => "Intermetrics, Inc.",
- AUTHOR => "Kathy Velick",
- CONTACT => "Ron Rathgeber",
- ADDRESS => ("5392 Bolsa Avenue",
- "Huntington Beach",
- "CA","92649"),
- PHONE => (714,891,4631),
- DATE_SUBMITTED => (20,NOV,1984));
-
- package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
- (LINES_OF_SOURCE_CODE => TBD,
- DEVELOPMENT_COMPILER => (IBM3083,AIE_UTS),
- PLANNED_COMPILERS_SUPPORTED => ((DECVAX,DECADA),
- (DECVAX,TSIADA)),
- AUXILIARY_FILES_SIZE => (TBD);
-
- package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (COMPLETED_EVENTS => NULL;
- SCHEDULED_EVENTS => ((PDR,(13,JAN,1985)),
- (CDR,(13,MAR,1985)),
- (FIRST_BUILT,(13,FEB,1985)),
- (DELIVERY,(13,JAN,1986)));
-
- end SYMBOLIC_DEBUGGER;
-