Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:

Somehow a nasty bug has made it in sh/start.S ("|", instead of "!", to
  begin an asm comment).

  I have no idea how this could remain undiscovered for so long (It is in
  rtems-4.0.0, too!), however upgrading to binutils from sourceware's CVS
  sh-rtems-as chokes on this bug. => I guess, either binutils changed its
  conventions or an obvious bug in as has been fixed.
This commit is contained in:
Joel Sherrill
1999-08-30 18:07:45 +00:00
parent 260b0c2155
commit 6cc786f96b
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ SYM (start):
! copy the vector table from rom to ram
mov.l vects_k,r0 ! vectab
mov #0,r1 ! address of boot vector table
mov #0,r2 | number of bytes copied
mov #0,r2 ! number of bytes copied
mov.w vects_size,r3 ! size of entries in vectab
1:
mov.l @r1+,r4

View File

@@ -41,7 +41,7 @@ SYM (start):
! copy the vector table from rom to ram
mov.l vects_k,r0 ! vectab
mov #0,r1 ! address of boot vector table
mov #0,r2 | number of bytes copied
mov #0,r2 ! number of bytes copied
mov.w vects_size,r3 ! size of entries in vectab
1:
mov.l @r1+,r4