Bladeren bron

* synchronized the tsystemcpu enum with trunk

git-svn-id: branches/z80@44392 -
nickysn 5 jaren geleden
bovenliggende
commit
c35b3d8eee
2 gewijzigde bestanden met toevoegingen van 6 en 2 verwijderingen
  1. 5 1
      compiler/systems.inc
  2. 1 1
      compiler/systems.pas

+ 5 - 1
compiler/systems.inc

@@ -51,7 +51,11 @@
              cpu_jvm,                      { 14 }
              cpu_i8086,                    { 15 }
              cpu_aarch64,                  { 16 }
-             cpu_wasm                      { 17 }
+             cpu_wasm,                     { 17 }
+             cpu_sparc64,                  { 18 }
+             cpu_riscv32,                  { 19 }
+             cpu_riscv64,                  { 20 }
+             cpu_xtensa                    { 21 }
        );
 
        tasmmode= (asmmode_none

+ 1 - 1
compiler/systems.pas

@@ -390,7 +390,7 @@ interface
        cpu2str : array[TSystemCpu] of string[10] =
             ('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
              'mips','arm', 'powerpc64', 'avr', 'mipsel','jvm', 'i8086',
-             'aarch64', 'wasm');
+             'aarch64', 'wasm', 'sparc64', 'riscv32', 'riscv64', 'xtensa');
 
        abiinfo : array[tabi] of tabiinfo = (
          (name: 'DEFAULT'; supported: true),