summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-01-29 00:13:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-01-29 00:13:00 +0000
commitb9181082831b7d4de50c73ced45794348f22205f (patch)
treeeecdb2f56f592eb0d9a49ae435580e84fcb7325a
parentChanged include of asm.h so it is in brackets not quotes. asm.h is (diff)
downloadrtems-b9181082831b7d4de50c73ced45794348f22205f.tar.bz2
Added include of targopts.h.
-rw-r--r--c/src/exec/score/cpu/a29k/asm.h9
-rw-r--r--c/src/exec/score/cpu/i386/asm.h1
-rw-r--r--c/src/exec/score/cpu/i960/asm.h1
-rw-r--r--c/src/exec/score/cpu/i960/cpu.h2
-rw-r--r--c/src/exec/score/cpu/m68k/asm.h3
-rw-r--r--c/src/exec/score/cpu/mips/asm.h1
-rw-r--r--c/src/exec/score/cpu/mips64orion/asm.h1
-rw-r--r--c/src/exec/score/cpu/no_cpu/asm.h1
-rw-r--r--c/src/exec/score/cpu/sparc/asm.h2
-rw-r--r--cpukit/score/cpu/a29k/asm.h9
-rw-r--r--cpukit/score/cpu/i386/asm.h1
-rw-r--r--cpukit/score/cpu/i386/rtems/asm.h1
-rw-r--r--cpukit/score/cpu/i960/asm.h1
-rw-r--r--cpukit/score/cpu/m68k/asm.h3
-rw-r--r--cpukit/score/cpu/m68k/rtems/asm.h3
-rw-r--r--cpukit/score/cpu/mips/asm.h1
-rw-r--r--cpukit/score/cpu/mips/rtems/asm.h1
-rw-r--r--cpukit/score/cpu/mips64orion/asm.h1
-rw-r--r--cpukit/score/cpu/no_cpu/asm.h1
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/asm.h1
-rw-r--r--cpukit/score/cpu/sparc/asm.h2
-rw-r--r--cpukit/score/cpu/sparc/rtems/asm.h2
22 files changed, 35 insertions, 13 deletions
diff --git a/c/src/exec/score/cpu/a29k/asm.h b/c/src/exec/score/cpu/a29k/asm.h
index 66d98be652..a680c9f1a5 100644
--- a/c/src/exec/score/cpu/a29k/asm.h
+++ b/c/src/exec/score/cpu/a29k/asm.h
@@ -10,6 +10,8 @@
* NOTE: The spacing in the use of these macros
* is critical to them working as advertised.
*
+ * !!! THIS FILE DOES NOT APPEAR TO HAVE BEEN USED IN THE 29K PORT !!!
+ *
* COPYRIGHT:
*
* This file is based on similar code found in newlib available
@@ -23,15 +25,16 @@
* $Id$
*/
-#ifndef __NO_CPU_ASM_h
-#define __NO_CPU_ASM_h
+#ifndef __A29K_ASM_h
+#define __A29K_ASM_h
/*
* Indicate we are in an assembly file and get the basic CPU definitions.
*/
#define ASM
-#include <rtems/score/no_cpu.h>
+#include <rtems/score/targopts.h>
+#include <rtems/score/asm.h>
/*
* Recent versions of GNU cpp define variables which indicate the
diff --git a/c/src/exec/score/cpu/i386/asm.h b/c/src/exec/score/cpu/i386/asm.h
index e317161043..adf4e2c63d 100644
--- a/c/src/exec/score/cpu/i386/asm.h
+++ b/c/src/exec/score/cpu/i386/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/i386.h>
/*
diff --git a/c/src/exec/score/cpu/i960/asm.h b/c/src/exec/score/cpu/i960/asm.h
index 803f42f649..8a84527ee8 100644
--- a/c/src/exec/score/cpu/i960/asm.h
+++ b/c/src/exec/score/cpu/i960/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/i960.h>
/*
diff --git a/c/src/exec/score/cpu/i960/cpu.h b/c/src/exec/score/cpu/i960/cpu.h
index fbf0b1a25e..5c16e3d414 100644
--- a/c/src/exec/score/cpu/i960/cpu.h
+++ b/c/src/exec/score/cpu/i960/cpu.h
@@ -23,7 +23,7 @@ extern "C" {
#pragma align 4 /* for GNU C structure alignment */
-#include <rtems/score/i960.h>
+#include <rtems/score/i960.h> /* pick up machine definitions */
#ifndef ASM
#include <rtems/score/i960types.h>
#endif
diff --git a/c/src/exec/score/cpu/m68k/asm.h b/c/src/exec/score/cpu/m68k/asm.h
index 4c53980d51..fda93d9528 100644
--- a/c/src/exec/score/cpu/m68k/asm.h
+++ b/c/src/exec/score/cpu/m68k/asm.h
@@ -31,7 +31,8 @@
*/
#define ASM
-#include <rtems/score/m68k.h>
+#include <rtems/score/targopts.h>
+#include <rtems/score/cpu.h>
/*
* Recent versions of GNU cpp define variables which indicate the
diff --git a/c/src/exec/score/cpu/mips/asm.h b/c/src/exec/score/cpu/mips/asm.h
index d45405b669..2382754654 100644
--- a/c/src/exec/score/cpu/mips/asm.h
+++ b/c/src/exec/score/cpu/mips/asm.h
@@ -32,6 +32,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/c/src/exec/score/cpu/mips64orion/asm.h b/c/src/exec/score/cpu/mips64orion/asm.h
index d45405b669..2382754654 100644
--- a/c/src/exec/score/cpu/mips64orion/asm.h
+++ b/c/src/exec/score/cpu/mips64orion/asm.h
@@ -32,6 +32,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/c/src/exec/score/cpu/no_cpu/asm.h b/c/src/exec/score/cpu/no_cpu/asm.h
index 66d98be652..6b386d4106 100644
--- a/c/src/exec/score/cpu/no_cpu/asm.h
+++ b/c/src/exec/score/cpu/no_cpu/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/c/src/exec/score/cpu/sparc/asm.h b/c/src/exec/score/cpu/sparc/asm.h
index 4f425de956..22c8365b88 100644
--- a/c/src/exec/score/cpu/sparc/asm.h
+++ b/c/src/exec/score/cpu/sparc/asm.h
@@ -29,7 +29,7 @@
#define ASM
-#include <rtems/score/sparc.h>
+#include <rtems/score/targopts.h>
#include <rtems/score/cpu.h>
/*
diff --git a/cpukit/score/cpu/a29k/asm.h b/cpukit/score/cpu/a29k/asm.h
index 66d98be652..a680c9f1a5 100644
--- a/cpukit/score/cpu/a29k/asm.h
+++ b/cpukit/score/cpu/a29k/asm.h
@@ -10,6 +10,8 @@
* NOTE: The spacing in the use of these macros
* is critical to them working as advertised.
*
+ * !!! THIS FILE DOES NOT APPEAR TO HAVE BEEN USED IN THE 29K PORT !!!
+ *
* COPYRIGHT:
*
* This file is based on similar code found in newlib available
@@ -23,15 +25,16 @@
* $Id$
*/
-#ifndef __NO_CPU_ASM_h
-#define __NO_CPU_ASM_h
+#ifndef __A29K_ASM_h
+#define __A29K_ASM_h
/*
* Indicate we are in an assembly file and get the basic CPU definitions.
*/
#define ASM
-#include <rtems/score/no_cpu.h>
+#include <rtems/score/targopts.h>
+#include <rtems/score/asm.h>
/*
* Recent versions of GNU cpp define variables which indicate the
diff --git a/cpukit/score/cpu/i386/asm.h b/cpukit/score/cpu/i386/asm.h
index e317161043..adf4e2c63d 100644
--- a/cpukit/score/cpu/i386/asm.h
+++ b/cpukit/score/cpu/i386/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/i386.h>
/*
diff --git a/cpukit/score/cpu/i386/rtems/asm.h b/cpukit/score/cpu/i386/rtems/asm.h
index e317161043..adf4e2c63d 100644
--- a/cpukit/score/cpu/i386/rtems/asm.h
+++ b/cpukit/score/cpu/i386/rtems/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/i386.h>
/*
diff --git a/cpukit/score/cpu/i960/asm.h b/cpukit/score/cpu/i960/asm.h
index 803f42f649..8a84527ee8 100644
--- a/cpukit/score/cpu/i960/asm.h
+++ b/cpukit/score/cpu/i960/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/i960.h>
/*
diff --git a/cpukit/score/cpu/m68k/asm.h b/cpukit/score/cpu/m68k/asm.h
index 4c53980d51..fda93d9528 100644
--- a/cpukit/score/cpu/m68k/asm.h
+++ b/cpukit/score/cpu/m68k/asm.h
@@ -31,7 +31,8 @@
*/
#define ASM
-#include <rtems/score/m68k.h>
+#include <rtems/score/targopts.h>
+#include <rtems/score/cpu.h>
/*
* Recent versions of GNU cpp define variables which indicate the
diff --git a/cpukit/score/cpu/m68k/rtems/asm.h b/cpukit/score/cpu/m68k/rtems/asm.h
index 4c53980d51..fda93d9528 100644
--- a/cpukit/score/cpu/m68k/rtems/asm.h
+++ b/cpukit/score/cpu/m68k/rtems/asm.h
@@ -31,7 +31,8 @@
*/
#define ASM
-#include <rtems/score/m68k.h>
+#include <rtems/score/targopts.h>
+#include <rtems/score/cpu.h>
/*
* Recent versions of GNU cpp define variables which indicate the
diff --git a/cpukit/score/cpu/mips/asm.h b/cpukit/score/cpu/mips/asm.h
index d45405b669..2382754654 100644
--- a/cpukit/score/cpu/mips/asm.h
+++ b/cpukit/score/cpu/mips/asm.h
@@ -32,6 +32,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/cpukit/score/cpu/mips/rtems/asm.h b/cpukit/score/cpu/mips/rtems/asm.h
index d45405b669..2382754654 100644
--- a/cpukit/score/cpu/mips/rtems/asm.h
+++ b/cpukit/score/cpu/mips/rtems/asm.h
@@ -32,6 +32,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/cpukit/score/cpu/mips64orion/asm.h b/cpukit/score/cpu/mips64orion/asm.h
index d45405b669..2382754654 100644
--- a/cpukit/score/cpu/mips64orion/asm.h
+++ b/cpukit/score/cpu/mips64orion/asm.h
@@ -32,6 +32,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/cpukit/score/cpu/no_cpu/asm.h b/cpukit/score/cpu/no_cpu/asm.h
index 66d98be652..6b386d4106 100644
--- a/cpukit/score/cpu/no_cpu/asm.h
+++ b/cpukit/score/cpu/no_cpu/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/cpukit/score/cpu/no_cpu/rtems/asm.h b/cpukit/score/cpu/no_cpu/rtems/asm.h
index 66d98be652..6b386d4106 100644
--- a/cpukit/score/cpu/no_cpu/rtems/asm.h
+++ b/cpukit/score/cpu/no_cpu/rtems/asm.h
@@ -31,6 +31,7 @@
*/
#define ASM
+#include <rtems/score/targopts.h>
#include <rtems/score/no_cpu.h>
/*
diff --git a/cpukit/score/cpu/sparc/asm.h b/cpukit/score/cpu/sparc/asm.h
index 4f425de956..22c8365b88 100644
--- a/cpukit/score/cpu/sparc/asm.h
+++ b/cpukit/score/cpu/sparc/asm.h
@@ -29,7 +29,7 @@
#define ASM
-#include <rtems/score/sparc.h>
+#include <rtems/score/targopts.h>
#include <rtems/score/cpu.h>
/*
diff --git a/cpukit/score/cpu/sparc/rtems/asm.h b/cpukit/score/cpu/sparc/rtems/asm.h
index 4f425de956..22c8365b88 100644
--- a/cpukit/score/cpu/sparc/rtems/asm.h
+++ b/cpukit/score/cpu/sparc/rtems/asm.h
@@ -29,7 +29,7 @@
#define ASM
-#include <rtems/score/sparc.h>
+#include <rtems/score/targopts.h>
#include <rtems/score/cpu.h>
/*