summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-04-27 15:50:29 +0000
committernickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-04-27 15:50:29 +0000
commitf863054ffb3bc3ac729ae8ba849855fde85684cc (patch)
treec217da7e2ce7c1076c5365cca9687f54677a270c
parentfc3f5bb978006b87191882d892596e75d98663eb (diff)
downloadfpc-z80.tar.gz
* tsystemcpu.cpu_sys_z80 renamed .cpu_z80 for consistency with the other values in the enum.z80
git-svn-id: https://svn.freepascal.org/svn/fpc/branches/z80@45140 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/systems.inc2
-rw-r--r--compiler/systems/i_embed.pas2
-rw-r--r--compiler/systems/i_zxspectrum.pas2
3 files changed, 3 insertions, 3 deletions
diff --git a/compiler/systems.inc b/compiler/systems.inc
index e7e112b424..f44cdd5e38 100644
--- a/compiler/systems.inc
+++ b/compiler/systems.inc
@@ -56,7 +56,7 @@
cpu_riscv32, { 19 }
cpu_riscv64, { 20 }
cpu_xtensa, { 21 }
- cpu_sys_z80 { 22 }
+ cpu_z80 { 22 }
);
tasmmode= (asmmode_none
diff --git a/compiler/systems/i_embed.pas b/compiler/systems/i_embed.pas
index c3d643e262..1fd0a182a1 100644
--- a/compiler/systems/i_embed.pas
+++ b/compiler/systems/i_embed.pas
@@ -724,7 +724,7 @@ unit i_embed;
flags : [tf_needs_symbol_size,tf_files_case_sensitive,
tf_smartlink_library,
tf_no_objectfiles_when_smartlinking];
- cpu : cpu_sys_z80;
+ cpu : cpu_z80;
unit_env : '';
extradefines : '';
exeext : '';
diff --git a/compiler/systems/i_zxspectrum.pas b/compiler/systems/i_zxspectrum.pas
index 8409541ba6..de6897693e 100644
--- a/compiler/systems/i_zxspectrum.pas
+++ b/compiler/systems/i_zxspectrum.pas
@@ -36,7 +36,7 @@ unit i_zxspectrum;
flags : [tf_needs_symbol_size,tf_files_case_sensitive,
tf_smartlink_library,
tf_no_objectfiles_when_smartlinking];
- cpu : cpu_sys_z80;
+ cpu : cpu_z80;
unit_env : '';
extradefines : '';
exeext : '';