Quellcode durchsuchen

* PS1: initialize exceptions on system unit startup

Nikolay Nikolov vor 1 Jahr
Ursprung
Commit
f9ffdeaf9e
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen
  1. 4 1
      rtl/ps1/system.pp

+ 4 - 1
rtl/ps1/system.pp

@@ -121,5 +121,8 @@ begin
   _InitHeap(pdword(@bss_end),PtrUInt(StackBottom)-PtrUInt(@bss_end));
   _InitHeap(pdword(@bss_end),PtrUInt(StackBottom)-PtrUInt(@bss_end));
   InitHeap;
   InitHeap;
 
 
+  { Init exceptions }
+  SysInitExceptions;
+
   InOutRes:= 0;
   InOutRes:= 0;
-end.
+end.