summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-04-27 15:47:52 +0000
committernickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-04-27 15:47:52 +0000
commit0c437d634bf351d19de0ede062ef387ab95e18d0 (patch)
tree45e8450d7657734a7b0a9b882eb5daef15bbbdef
parent2ef1d806193c5ce939fe47ea8e9ece948b125ad4 (diff)
downloadfpc-0c437d634bf351d19de0ede062ef387ab95e18d0.tar.gz
* tcputype.cpu_z80 renamed .cpu_zilog_z80
git-svn-id: https://svn.freepascal.org/svn/fpc/branches/z80@45138 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/globals.pas4
-rw-r--r--compiler/z80/cpuinfo.pas4
2 files changed, 4 insertions, 4 deletions
diff --git a/compiler/globals.pas b/compiler/globals.pas
index 064e3a009c..c3a1f781a0 100644
--- a/compiler/globals.pas
+++ b/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
diff --git a/compiler/z80/cpuinfo.pas b/compiler/z80/cpuinfo.pas
index 41363039d7..3421369289 100644
--- a/compiler/z80/cpuinfo.pas
+++ b/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]
);