start no longer a global symbol per Eric Norum's request.

Also, I ran across a nasty problem the first time I tried
    downloading and running an application compiled with the new
    snapshot.  To make a very long story short, the `start' in
    ...../m68k/gen6860/start360/start360.s must not be global.  The
    change is simple -- just remove the
            .globl start
    from start360.s.
This commit is contained in:
Joel Sherrill
1997-08-22 13:08:56 +00:00
parent 5b9ec35166
commit 2d99737533
2 changed files with 12 additions and 2 deletions

View File

@@ -311,7 +311,12 @@ spurious_interrupt:
.align 2
.long ETHERNET_ADDRESS | Low-order 3 octets of ethernet address
.global start
/*
* For some reason, the symbol start must not be global.
*
* .global start
*/
/*
* Initial PC
*/

View File

@@ -311,7 +311,12 @@ spurious_interrupt:
.align 2
.long ETHERNET_ADDRESS | Low-order 3 octets of ethernet address
.global start
/*
* For some reason, the symbol start must not be global.
*
* .global start
*/
/*
* Initial PC
*/