mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 22:27:21 -04:00
minor edits
This commit is contained in:
parent
9935c79436
commit
916bae5aeb
2 changed files with 5 additions and 5 deletions
|
@ -366,7 +366,7 @@ int main() {
|
|||
#endif
|
||||
}
|
||||
else {
|
||||
neorv32_uart_printf("skipped (not possible when C-EXT enabled)\n");
|
||||
neorv32_uart_printf("skipped (not possible when C extension is enabled)\n");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -220,9 +220,9 @@ enum NEORV32_CLOCK_PRSC_enum {
|
|||
**************************************************************************/
|
||||
/**@{*/
|
||||
/** instruction memory base address (r/w/x) */
|
||||
// -> use value from MEM_ISPACE_BASE CSR
|
||||
// -> use value from MEM_ISPACE_BASE generic
|
||||
/** data memory base address (r/w/x) */
|
||||
// -> use value from MEM_DSPACE_BASE CSR
|
||||
// -> use value from MEM_DSPACE_BASE generic
|
||||
/** bootloader memory base address (r/-/x) */
|
||||
#define BOOTLOADER_BASE_ADDRESS (0xFFFF0000UL)
|
||||
/** peripheral/IO devices memory base address (r/w/x) */
|
||||
|
@ -234,9 +234,9 @@ enum NEORV32_CLOCK_PRSC_enum {
|
|||
* @name IO Device: General Purpose Input/Output Port Unit (GPIO)
|
||||
**************************************************************************/
|
||||
/**@{*/
|
||||
/** GPIO parallel input port (r/-) */
|
||||
/** GPIO parallel input port 32-bit (r/-) */
|
||||
#define GPIO_INPUT (*(IO_ROM32 0xFFFFFF80UL))
|
||||
/** GPIO parallel output port (r/w) */
|
||||
/** GPIO parallel output port 32-bit (r/w) */
|
||||
#define GPIO_OUTPUT (*(IO_REG32 0xFFFFFF84UL))
|
||||
/**@}*/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue