diff options
Diffstat (limited to 'compiler/avr/cpuinfo.pas')
-rw-r--r-- | compiler/avr/cpuinfo.pas | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/avr/cpuinfo.pas b/compiler/avr/cpuinfo.pas index e15fadfc0f..eec89b73a2 100644 --- a/compiler/avr/cpuinfo.pas +++ b/compiler/avr/cpuinfo.pas @@ -21,6 +21,9 @@ Interface Type bestreal = double; +{$if FPC_FULLVERSION>20700} + bestrealrec = TDoubleRec; +{$endif FPC_FULLVERSION>20700} ts32real = single; ts64real = double; ts80real = type extended; @@ -61,6 +64,9 @@ Type ); Const + { Is there support for dealing with multiple microcontrollers available } + { for this platform? } + ControllerSupport = true; {# Size of native extended floating point type } extended_size = 12; {# Size of a multimedia register } |