From a0a8a6911a1d0f9e17fbd6c7f4a54bcdb1a9adca Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 11 Dec 2020 22:14:16 +0000 Subject: [PATCH] * m68k: proper values for first_*_reg git-svn-id: trunk@47761 - --- compiler/m68k/cpubase.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/m68k/cpubase.pas b/compiler/m68k/cpubase.pas index 72abe345e1..6ecf62ec53 100644 --- a/compiler/m68k/cpubase.pas +++ b/compiler/m68k/cpubase.pas @@ -67,13 +67,13 @@ unit cpubase; NR_SP = NR_A7; { Integer Super registers first and last } - first_int_imreg = RS_D7+1; + first_int_imreg = 8; { Float Super register first and last } - first_fpu_imreg = RS_FP7+1; + first_fpu_imreg = 8; { Integer Super registers first and last } - first_addr_imreg = RS_SP+1; + first_addr_imreg = 8; { MM Super register first and last } first_mm_supreg = 0;