added CVS Id string

This commit is contained in:
Joel Sherrill
1997-06-04 18:32:07 +00:00
parent 25c5bee547
commit 139b2e4a00
181 changed files with 541 additions and 70 deletions

View File

@@ -1,5 +1,7 @@
#
# Paths which may change
# Build information which may change
#
# $Id$
#
TEXI2DVI=/usr1/tmp/texi2www-960103/texi2dvi

View File

@@ -1,3 +1,6 @@
#
# $Id$
#
Tools Required
==============

View File

@@ -3,6 +3,8 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file for the Ada User's Guide

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Example Application, Glossary, Directive Status Codes, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c The following puts a space somewhere on an otherwise empty page so we

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Set Variables

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Macros to help with the tables in this file
@c

View File

@@ -1,6 +1,12 @@
@c
@c Time Table Template
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifset use-tex
@sp 1

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Timing Specification, Timing Specification Introduction, , Top

View File

@@ -3,6 +3,12 @@
@c RTEMS RAM Workspace Worksheet
@c RTEMS Code Space Worksheet
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Memory Requirements, Memory Requirements Introduction, WORKSHEETS_PREVIOUS_LINK, Top

View File

@@ -3,6 +3,8 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config

View File

@@ -5,6 +5,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Compilation and GNU Make Stanzas, Compilation and GNU Make Stanzas Building the Entire Tree, Test Suite Source Directory, Top

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Directory Structure, Directory Structure Suites, Introduction, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Introduction, Directory Structure, Top, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Sample Applications, Sample Applications Introduction, Test Suite Source Directory, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node RTEMS Specific Utilities, RTEMS Specific Utilities C Language Specific Utilities, Sample Applications Paranoia Floating Point Application, Top

View File

@@ -4,6 +4,8 @@
# into a reasonably acceptable form of Texinfo. The output of this program
# is fed into another program which inserts texinfo node and menu infomation.
#
# $Id$
#
#set -x

View File

@@ -3,51 +3,52 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config
PROJECT=posix
DOCNAME=posix_test_plan
PROJECT=posix_test_plan
all:
COMMON_FILES=../common/cpright.texi
FILES= clock.texi cond.texi key.texi mutex.texi $(DOCNAME).texi preface.texi \
FILES= clock.texi cond.texi key.texi mutex.texi $(PROJECT).texi preface.texi \
sched.texi signal.texi thread.texi $(COMMON_FILES)
all:
INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
info: $(DOCNAME)
# cp $(DOCNAME) $(DOCNAME)-* $(INFO_INSTALL)
cp $(DOCNAME) $(INFO_INSTALL)
info: $(PROJECT)
# cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
cp $(PROJECT) $(INFO_INSTALL)
posix_test_plan: $(FILES)
$(MAKEINFO) $(DOCNAME).texi
$(MAKEINFO) $(PROJECT).texi
vinfo: info
$(INFO) -f ./$(DOCNAME)
$(INFO) -f ./$(PROJECT)
dvi: $(DOCNAME).dvi
ps: $(DOCNAME).ps
dvi: $(PROJECT).dvi
ps: $(PROJECT).ps
$(DOCNAME).ps: $(DOCNAME).dvi
dvips -o $(DOCNAME).ps $(DOCNAME).dvi
$(PROJECT).ps: $(PROJECT).dvi
dvips -o $(PROJECT).ps $(PROJECT).dvi
cp $(PROJECT).ps $(PS_INSTALL)
dv: dvi
$(XDVI) $(DOCNAME).dvi
$(XDVI) $(PROJECT).dvi
view: ps
$(GHOSTVIEW) $(DOCNAME).ps
$(GHOSTVIEW) $(PROJECT).ps
$(DOCNAME).dvi: $(FILES)
$(TEXI2DVI) $(DOCNAME).texi
$(PROJECT).dvi: $(FILES)
$(TEXI2DVI) $(PROJECT).texi
html:
-mkdir $(WWW_INSTALL)/$(DOCNAME)
$(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/c_$(PROJECT) \
-mkdir $(WWW_INSTALL)/$(PROJECT)
$(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
$(PROJECT).texi
cp ../rtems.html $(WWW_INSTALL)
@@ -55,5 +56,5 @@ html:
clean:
rm -f *.o $(PROG) *.txt core *.html
rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
rm -f $(DOCNAME) $(DOCNAME)-* _*
rm -f $(PROJECT) $(PROJECT)-* _*

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Mutex Manager, Mutex Manager Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Clock Manager, Clock Manager Introduction, pthread_getspecific, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Condition Variable Manager, Condition Variable Manager Introduction, pthread_mutex_getprioceiling, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Key Manager, Key Manager Introduction, pthread_cond_timedwait, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Mutex Manager, Mutex Manager Introduction, alarm, Top

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file for the C User's Guide

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Preface, Thread Manager, Top, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Scheduler Manager, Scheduler Manager Introduction, time, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Signal Manager, Signal Manager Introduction, pthread_getschedparam, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Thread Manager, Thread Manager Introduction, Preface, Top

View File

@@ -3,51 +3,52 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config
PROJECT=posix
DOCNAME=posix_test_plan
PROJECT=posix_test_plan
all:
COMMON_FILES=../common/cpright.texi
FILES= clock.texi cond.texi key.texi mutex.texi $(DOCNAME).texi preface.texi \
FILES= clock.texi cond.texi key.texi mutex.texi $(PROJECT).texi preface.texi \
sched.texi signal.texi thread.texi $(COMMON_FILES)
all:
INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
info: $(DOCNAME)
# cp $(DOCNAME) $(DOCNAME)-* $(INFO_INSTALL)
cp $(DOCNAME) $(INFO_INSTALL)
info: $(PROJECT)
# cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
cp $(PROJECT) $(INFO_INSTALL)
posix_test_plan: $(FILES)
$(MAKEINFO) $(DOCNAME).texi
$(MAKEINFO) $(PROJECT).texi
vinfo: info
$(INFO) -f ./$(DOCNAME)
$(INFO) -f ./$(PROJECT)
dvi: $(DOCNAME).dvi
ps: $(DOCNAME).ps
dvi: $(PROJECT).dvi
ps: $(PROJECT).ps
$(DOCNAME).ps: $(DOCNAME).dvi
dvips -o $(DOCNAME).ps $(DOCNAME).dvi
$(PROJECT).ps: $(PROJECT).dvi
dvips -o $(PROJECT).ps $(PROJECT).dvi
cp $(PROJECT).ps $(PS_INSTALL)
dv: dvi
$(XDVI) $(DOCNAME).dvi
$(XDVI) $(PROJECT).dvi
view: ps
$(GHOSTVIEW) $(DOCNAME).ps
$(GHOSTVIEW) $(PROJECT).ps
$(DOCNAME).dvi: $(FILES)
$(TEXI2DVI) $(DOCNAME).texi
$(PROJECT).dvi: $(FILES)
$(TEXI2DVI) $(PROJECT).texi
html:
-mkdir $(WWW_INSTALL)/$(DOCNAME)
$(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/c_$(PROJECT) \
-mkdir $(WWW_INSTALL)/$(PROJECT)
$(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
$(PROJECT).texi
cp ../rtems.html $(WWW_INSTALL)
@@ -55,5 +56,5 @@ html:
clean:
rm -f *.o $(PROG) *.txt core *.html
rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
rm -f $(DOCNAME) $(DOCNAME)-* _*
rm -f $(PROJECT) $(PROJECT)-* _*

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Mutex Manager, Mutex Manager Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Clock Manager, Clock Manager Introduction, pthread_getspecific, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Condition Variable Manager, Condition Variable Manager Introduction, pthread_mutex_getprioceiling, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Key Manager, Key Manager Introduction, pthread_cond_timedwait, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Mutex Manager, Mutex Manager Introduction, alarm, Top

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file for the C User's Guide

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Preface, Thread Manager, Top, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Scheduler Manager, Scheduler Manager Introduction, time, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Signal Manager, Signal Manager Introduction, pthread_getschedparam, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Thread Manager, Thread Manager Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Installation Procedure, Installation Procedure Introduction, Introduction Documentation, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Introduction, Introduction Supporting Tools, Top, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Development Environment Status, Development Environment Status RTEMS Executive Status, Installation Procedure Installing RTEMS, Top

View File

@@ -3,6 +3,8 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config

View File

@@ -1,6 +1,8 @@
#
# PA-RISC Timing and Size Information
#
# $Id$
#
#
# CPU Model Information

View File

@@ -1,6 +1,8 @@
#
# PA-RISC Timing and Size Information
#
# $Id$
#
#
# CPU Model Information

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Board Support Packages, Board Support Packages Introduction, Default Fatal Error Processing Default Fatal Error Handler Operations, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Board Support Packages, Board Support Packages Introduction, Default Fatal Error Processing Default Fatal Error Handler Operations, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Calling Conventions, Calling Conventions Introduction, CPU Model Dependent Features CPU Model Name, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Calling Conventions, Calling Conventions Introduction, CPU Model Dependent Features CPU Model Name, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node CPU Model Dependent Features, CPU Model Dependent Features Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node CPU Model Dependent Features, CPU Model Dependent Features Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Default Fatal Error Processing, Default Fatal Error Processing Introduction, Interrupt Processing Disabling of Interrupts by RTEMS, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Default Fatal Error Processing, Default Fatal Error Processing Introduction, Interrupt Processing Disabling of Interrupts by RTEMS, Top

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file for the Hewlett Packard PA-RISC Applications Supplement

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Interrupt Processing, Interrupt Processing Introduction, Memory Model Flat Memory Model, Top
@end ifinfo

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Interrupt Processing, Interrupt Processing Introduction, Memory Model Flat Memory Model, Top
@end ifinfo

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Memory Model, Memory Model Introduction, Calling Conventions User-Provided Routines, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Memory Model, Memory Model Introduction, Calling Conventions User-Provided Routines, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Preface, CPU Model Dependent Features, Top, Top

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node HP-7100 Timing Data, HP-7100 Timing Data Introduction, Memory Requirements RTEMS RAM Workspace Worksheet, Top
@end ifinfo

View File

@@ -1,6 +1,8 @@
#
# Intel i386/Force CPU-386 Timing and Size Information
#
# $Id$
#
#
# CPU Model Information

View File

@@ -3,6 +3,8 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Board Support Packages, Board Support Packages Introduction, Default Fatal Error Processing Default Fatal Error Handler Operations, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Board Support Packages, Board Support Packages Introduction, Default Fatal Error Processing Default Fatal Error Handler Operations, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Calling Conventions, Calling Conventions Introduction, CPU Model Dependent Features Floating Point Unit, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Calling Conventions, Calling Conventions Introduction, CPU Model Dependent Features Floating Point Unit, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node CPU Model Dependent Features, CPU Model Dependent Features Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node CPU Model Dependent Features, CPU Model Dependent Features Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Default Fatal Error Processing, Default Fatal Error Processing Introduction, Interrupt Processing Interrupt Stack, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Default Fatal Error Processing, Default Fatal Error Processing Introduction, Interrupt Processing Interrupt Stack, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
\input ../texinfo/texinfo @c -*-texinfo-*-
@c %**start of header

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Interrupt Processing, Interrupt Processing Introduction, Memory Model Flat Memory Model, Top
@end ifinfo

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Interrupt Processing, Interrupt Processing Introduction, Memory Model Flat Memory Model, Top
@end ifinfo

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Memory Model, Memory Model Introduction, Calling Conventions User-Provided Routines, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Memory Model, Memory Model Introduction, Calling Conventions User-Provided Routines, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Preface, CPU Model Dependent Features, Top, Top

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@include ../common/timemac.texi
@tex
\global\advance \smallskipamount by -4pt

View File

@@ -1,3 +1,11 @@
@c
@c COPYRIGHT (c) 1988-1997.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@include ../common/timemac.texi
@tex
\global\advance \smallskipamount by -4pt

View File

@@ -1,6 +1,8 @@
#
# Intel i960/Cyclone CVME961 (i960CA) Timing and Size Information
#
# $Id$
#
#
# CPU Model Information

View File

@@ -3,6 +3,8 @@
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
# $Id$
#
include ../Make.config

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Board Support Packages, Board Support Packages Introduction, Default Fatal Error Processing Default Fatal Error Handler Operations, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Board Support Packages, Board Support Packages Introduction, Default Fatal Error Processing Default Fatal Error Handler Operations, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Calling Conventions, Calling Conventions Introduction, CPU Model Dependent Features Floating Point Unit, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Calling Conventions, Calling Conventions Introduction, CPU Model Dependent Features Floating Point Unit, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node CPU Model Dependent Features, CPU Model Dependent Features Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node CPU Model Dependent Features, CPU Model Dependent Features Introduction, Preface, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Default Fatal Error Processing, Default Fatal Error Processing Introduction, Interrupt Processing Interrupt Stack, Top

View File

@@ -3,6 +3,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@ifinfo
@node Default Fatal Error Processing, Default Fatal Error Processing Introduction, Interrupt Processing Interrupt Stack, Top

View File

@@ -12,6 +12,8 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@c $Id$
@c
@c
@c Master file for the Intel i960 Applications Supplement

Some files were not shown because too many files have changed in this diff Show More