Browse Source

* tcputype.cpu_ez80 renamed .cpu_zilog_ez80

git-svn-id: branches/z80@45139 -
nickysn 5 years ago
parent
commit
9cca44d3af
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/z80/cpuinfo.pas

+ 2 - 2
compiler/z80/cpuinfo.pas

@@ -36,7 +36,7 @@ Type
    tcputype =
    tcputype =
       (cpu_none,
       (cpu_none,
        cpu_zilog_z80,
        cpu_zilog_z80,
-       cpu_ez80
+       cpu_zilog_ez80
       );
       );
 
 
    tfputype =
    tfputype =
@@ -122,7 +122,7 @@ Const
    cpu_capabilities : array[tcputype] of set of tcpuflags =
    cpu_capabilities : array[tcputype] of set of tcpuflags =
      ( { cpu_none  } [],
      ( { cpu_none  } [],
        { cpu_zilog_z80  } [],
        { cpu_zilog_z80  } [],
-       { cpu_ez80 } [CPUZ80_HAS_CALLCC]
+       { cpu_zilog_ez80 } [CPUZ80_HAS_CALLCC]
      );
      );
 
 
 Implementation
 Implementation