doxygen: score: Add or1k CPU architecture group

Update #3706.
This commit is contained in:
Andreas Dachsberger
2019-03-26 11:40:41 +01:00
committed by Sebastian Huber
parent 92c2db645e
commit 39594416c4
4 changed files with 27 additions and 1 deletions

View File

@@ -37,6 +37,16 @@
#include <rtems/score/cpuopts.h> #include <rtems/score/cpuopts.h>
#include <rtems/score/or1k.h> #include <rtems/score/or1k.h>
/**
* @defgroup RTEMSScoreCPUor1kASM OpenRISC 1000 (or1k) Assembler Support
*
* @ingroup RTEMSScoreCPUor1k
*
* @brief OpenRISC 1000 (or1k) Assembler Support
*
* @{
*/
/* /*
* Recent versions of GNU cpp define variables which indicate the * Recent versions of GNU cpp define variables which indicate the
* need for underscores and percents. If not using GNU cpp or * need for underscores and percents. If not using GNU cpp or
@@ -96,4 +106,6 @@
#define PUBLIC(sym) .global SYM (sym) #define PUBLIC(sym) .global SYM (sym)
#define EXTERN(sym) .global SYM (sym) #define EXTERN(sym) .global SYM (sym)
/** @} */
#endif #endif

View File

@@ -1,5 +1,7 @@
/** /**
* @file * @file
*
* @ingroup RTEMScoreCPUor1k
*/ */
/* /*

View File

@@ -17,6 +17,16 @@
#include <rtems/score/cpu.h> #include <rtems/score/cpu.h>
/**
* @defgroup RTEMSScoreCPUor1k OpenRISC 1000 (or1k)
*
* @ingroup RTEMSScoreCPU
*
* @brief OpenRISC 1000 (or1k) Architecture Support
*
* @{
*/
#define CPU_PER_CPU_CONTROL_SIZE 0 #define CPU_PER_CPU_CONTROL_SIZE 0
#ifndef ASM #ifndef ASM
@@ -45,4 +55,6 @@ RTEMS_INLINE_ROUTINE void _CPU_Instruction_no_operation( void )
#endif /* ASM */ #endif /* ASM */
/** @} */
#endif /* _RTEMS_SCORE_CPUIMPL_H */ #endif /* _RTEMS_SCORE_CPUIMPL_H */

View File

@@ -1,7 +1,7 @@
/** /**
* @file * @file
* *
* @ingroup RTEMSScoreCPU * @addtogroup RTEMSScoreCPU
* *
* @brief OR1K exception support implementation. * @brief OR1K exception support implementation.
*/ */