Browse Source

human68k: fixed a dumb typo on the bss start calculation. fixes FPC binaries under run68.

Karoly Balogh 1 year ago
parent
commit
7ecb19f906
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/human68k/si_prc.pp

+ 1 - 1
rtl/human68k/si_prc.pp

@@ -57,7 +57,7 @@ begin
   with startparams^ do
     begin
       { clear BSS }
-      bss_start:=pbyte(pdword(@mcb[30])^);
+      bss_start:=pbyte(pdword(@mcb[$30])^);
       fillchar(bss_start^,bss_end-bss_start,0);
     end;