Bladeren bron

* compilation fixed

git-svn-id: branches/z80@44546 -
florian 5 jaren geleden
bovenliggende
commit
0fc1ba26f8
2 gewijzigde bestanden met toevoegingen van 8 en 4 verwijderingen
  1. 4 2
      compiler/entfile.pas
  2. 4 2
      compiler/utils/ppuutils/ppudump.pp

+ 4 - 2
compiler/entfile.pas

@@ -160,7 +160,8 @@ const
     { 18 } 64 {'sparc64'},
     { 19 } 32 {'riscv32'},
     { 20 } 64 {'riscv64'},
-    { 21 } 32 {'xtensa'}
+    { 21 } 32 {'xtensa'},
+    { 22 } 16 {'z80'}
     );
   CpuAluBitSize : array[tsystemcpu] of longint =
     (
@@ -185,7 +186,8 @@ const
     { 18 } 64 {'sparc64'},
     { 19 } 32 {'riscv32'},
     { 20 } 64 {'riscv64'},
-    { 21 } 32 {'xtensa'}
+    { 21 } 32 {'xtensa'},
+    { 22 }  8 {'z80'}
     );
 {$endif generic_cpu}
 

+ 4 - 2
compiler/utils/ppuutils/ppudump.pp

@@ -86,7 +86,8 @@ const
     { 18 } 'sparc64',
     { 19 } 'riscv32',
     { 20 } 'riscv64',
-    { 21 } 'xtensa'
+    { 21 } 'xtensa',
+    { 22 } 'z80'
     );
 
   CpuHasController : array[tsystemcpu] of boolean =
@@ -112,7 +113,8 @@ const
     { 18 } false {'sparc64'},
     { 19 } false {'riscv32'},
     { 20 } false {'riscv64'},
-    { 21 } true  {'xtensa'}
+    { 21 } true  {'xtensa'},
+    { 22 } true  {'z80'}
     );
 
 { List of all supported system-cpu couples }