]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/RISC-V-RV32/readme.txt
Add Dornerworks attribution to makefiles that build the Freedom Studio RISC-V project.
[freertos] / FreeRTOS / Source / portable / GCC / RISC-V-RV32 / readme.txt
1 /*\r
2  * The FreeRTOS kernel's RISC-V port is split between the the code that is\r
3  * common across all currently supported RISC-V chips (implementations of the\r
4  * RISC-V ISA), and code that tailors the port to a specific RISC-V chip:\r
5  *\r
6  * + FreeRTOS\Source\portable\GCC\RISC-V-RV32\portASM.S contains the code that\r
7  *   is common to all currently supported RISC-V chips.  There is only one\r
8  *   portASM.S file because the same file is built for all RISC-V target chips.\r
9  *\r
10  * + Header files called freertos_risc_v_chip_specific_extensions.h contain the\r
11  *   code that tailors the FreeRTOS kernel's RISC-V port to a specific RISC-V\r
12  *   chip.  There are multiple freertos_risc_v_chip_specific_extensions.h files\r
13  *   as there are multiple RISC-V chip implementations.\r
14  *\r
15  * !!!NOTE!!!\r
16  * TAKE CARE TO INCLUDE THE CORRECT freertos_risc_v_chip_specific_extensions.h\r
17  * HEADER FILE FOR THE CHIP IN USE.  This is done using the assembler's (not the\r
18  * compiler's!) include path.  For example, if the chip in use includes a core\r
19  * local interrupter (CLINT) and does not include any chip specific register\r
20  * extensions then add the path below to the assembler's include path:\r
21  * FreeRTOS\Source\portable\GCC\RISC-V-RV32\chip_specific_extensions\RV32I_CLINT_no_extensions\r
22  *\r
23  */\r