diff options
Diffstat (limited to 'compiler/arm/cpuinfo.pas')
-rw-r--r-- | compiler/arm/cpuinfo.pas | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/compiler/arm/cpuinfo.pas b/compiler/arm/cpuinfo.pas index 727f6a990d..e61bb46494 100644 --- a/compiler/arm/cpuinfo.pas +++ b/compiler/arm/cpuinfo.pas @@ -99,7 +99,9 @@ Const pocall_softfloat, { same as stdcall (requires that all const records are passed by reference, but that's already done for stdcall) } - pocall_mwpascal + pocall_mwpascal, + { used for interrupt handling } + pocall_interrupt ]; cputypestr : array[tcputype] of string[8] = ('', @@ -147,6 +149,19 @@ Const 'STELLARIS' ); + interruptvectors : array[tcontrollertype] of longint = + (0, + 8, + 8, + 8, + 8, + 8, + 8, + 8, + 12+59, { XL-density } + 12 { No model specified } + ); + vfp_scalar = [fpu_vfpv2,fpu_vfpv3]; { Supported optimizations, only used for information } |