Browse Source

* tcputype.cpu_z80 renamed .cpu_zilog_z80

git-svn-id: branches/z80@45138 -
nickysn 5 năm trước cách đây
mục cha
commit
784237ee33
2 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 2 2
      compiler/globals.pas
  2. 2 2
      compiler/z80/cpuinfo.pas

+ 2 - 2
compiler/globals.pas

@@ -562,8 +562,8 @@ interface
         fputype : fpu_none;
   {$endif xtensa}
   {$ifdef z80}
-        cputype : cpu_z80;
-        optimizecputype : cpu_z80;
+        cputype : cpu_zilog_z80;
+        optimizecputype : cpu_zilog_z80;
         { Use cpu_none by default,
         because using cpu_8086 by default means
         that we reject any instruction above bare 8086 instruction set

+ 2 - 2
compiler/z80/cpuinfo.pas

@@ -35,7 +35,7 @@ Type
    { possible supported processors for this target }
    tcputype =
       (cpu_none,
-       cpu_z80,
+       cpu_zilog_z80,
        cpu_ez80
       );
 
@@ -121,7 +121,7 @@ Const
  const
    cpu_capabilities : array[tcputype] of set of tcpuflags =
      ( { cpu_none  } [],
-       { cpu_z80  } [],
+       { cpu_zilog_z80  } [],
        { cpu_ez80 } [CPUZ80_HAS_CALLCC]
      );