Browse Source

* more compilation fixes

Nikolay Nikolov 1 year ago
parent
commit
9432165572
1 changed files with 4 additions and 2 deletions
  1. 4 2
      compiler/mos6502/cpuinfo.pas

+ 4 - 2
compiler/mos6502/cpuinfo.pas

@@ -40,7 +40,8 @@ Type
 
 
    tfputype =
    tfputype =
      (fpu_none,
      (fpu_none,
-      fpu_soft
+      fpu_soft,
+      fpu_libgcc
      );
      );
 
 
    tcontrollertype =
    tcontrollertype =
@@ -91,7 +92,8 @@ Const
 
 
    fputypestr : array[tfputype] of string[6] = (
    fputypestr : array[tfputype] of string[6] = (
      'NONE',
      'NONE',
-     'SOFT'
+     'SOFT',
+     'LIBGCC'
    );
    );
 
 
    { Supported optimizations, only used for information }
    { Supported optimizations, only used for information }