diff options
Diffstat (limited to 'compiler/sparc/cpuinfo.pas')
-rw-r--r-- | compiler/sparc/cpuinfo.pas | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/compiler/sparc/cpuinfo.pas b/compiler/sparc/cpuinfo.pas index e9d86e7d8b..55c26d3e6c 100644 --- a/compiler/sparc/cpuinfo.pas +++ b/compiler/sparc/cpuinfo.pas @@ -30,6 +30,9 @@ uses type bestreal = double; +{$if FPC_FULLVERSION>20700} + bestrealrec = TDoubleRec; +{$endif FPC_FULLVERSION>20700} ts32real = single; ts64real = double; ts80real = extended; @@ -49,8 +52,24 @@ type fpu_hard ); + tcontrollertype =(ct_none + ); + + +Const + { Is there support for dealing with multiple microcontrollers available } + { for this platform? } + ControllerSupport = true; + + { We know that there are fields after sramsize + but we don't care about this warning } + {$PUSH} + {$WARN 3177 OFF} + embedded_controllers : array [tcontrollertype] of tcontrollerdatatype = + ( + (controllertypestr:''; controllerunitstr:''; flashbase:0; flashsize:0; srambase:0; sramsize:0)); + {$POP} -const { calling conventions supported by the code generator } supported_calling_conventions : tproccalloptions = [ pocall_internproc, |