From e63e254e4c422ad8ec18aa83b7240ddd8e65f6e7 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 22 Aug 1997 19:19:07 +0000 Subject: Corrected bug per Katsutoshi Shibuya's report: The definition of "BEGIN_DATA" should not be null; should be ".data". Also, the definition of "BEGIN_BSS" should be ".bss". For this error, the compiled object has codes that write on the text segment area. It is fatal when the code runs on ROM. --- cpukit/score/cpu/m68k/rtems/asm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/cpu/m68k/rtems/asm.h') diff --git a/cpukit/score/cpu/m68k/rtems/asm.h b/cpukit/score/cpu/m68k/rtems/asm.h index ee800b2280..e6ecb813c2 100644 --- a/cpukit/score/cpu/m68k/rtems/asm.h +++ b/cpukit/score/cpu/m68k/rtems/asm.h @@ -112,13 +112,13 @@ #define BEGIN_CODE_DCL .text #define END_CODE_DCL -#define BEGIN_DATA_DCL .data +#define BEGIN_DATA_DCL #define END_DATA_DCL #define BEGIN_CODE .text #define END_CODE #define BEGIN_DATA #define END_DATA -#define BEGIN_BSS +#define BEGIN_BSS .bss #define END_BSS #define END -- cgit v1.2.3