Browse Source

m68k-linux: try to be as ColdFire compatible in the startup code as possible, so explicitly use jsr, otherwise this might compile to a long bsr, that is not CF compatible (except cfv4)

Karoly Balogh 2 years ago
parent
commit
fd83fd5779
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/linux/m68k/prt0.as

+ 1 - 1
rtl/linux/m68k/prt0.as

@@ -59,7 +59,7 @@ _start:
 #        move.l (%sp), %d0
 #        move.l %d0, operatingsystem_parameter_argc
 
-        jbsr PASCALMAIN
+        jsr  PASCALMAIN
 
         illegal                        /* Crash if somehow `exit' does return.  */