* tcputype.cpu_z80 renamed .cpu_zilog_z80

git-svn-id: branches/z80@45138 -
This commit is contained in:
nickysn 2020-04-27 15:47:52 +00:00
parent 5594302d2a
commit 784237ee33
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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]
);