Browse Source

* PS1: initialize exceptions on system unit startup

Nikolay Nikolov 10 months ago
parent
commit
f9ffdeaf9e
1 changed files with 4 additions and 1 deletions
  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;
 
+  { Init exceptions }
+  SysInitExceptions;
+
   InOutRes:= 0;
-end.
+end.