summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/aarch64/cpu.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Canonicalize _CPU_Fatal_halt()Sebastian Huber2021-07-281-2/+14
| | | | | | | | Move _CPU_Fatal_halt() declaration to <rtems/score/cpuimpl.h> and make sure it is a proper declaration of a function which does not return. Fix the type of the error code. If necessary, add the implementation to cpu.c. Implementing _CPU_Fatal_halt() as a function makes it possible to wrap this function for example to fully test _Terminate().
* score/aarch64: Fix interrupt level readsAlex White2021-03-051-1/+1
|
* score: Add AArch64 portKinsey Moore2020-10-051-0/+197
This adds a CPU port for AArch64(ARMv8) with support for exceptions and interrupts.