NEORV32 Software Framework Documentation
The NEORV32 RISC-V Processor
Loading...
Searching...
No Matches
neorv32_cfs.h
Go to the documentation of this file.
1// ================================================================================ //
2// The NEORV32 RISC-V Processor - https://github.com/stnolting/neorv32 //
3// Copyright (c) NEORV32 contributors. //
4// Copyright (c) 2020 - 2024 Stephan Nolting. All rights reserved. //
5// Licensed under the BSD-3-Clause license, see LICENSE for details. //
6// SPDX-License-Identifier: BSD-3-Clause //
7// ================================================================================ //
8
20#ifndef neorv32_cfs_h
21#define neorv32_cfs_h
22
23#include <stdint.h>
24
25
26/**********************************************************************/
31typedef volatile struct __attribute__((packed,aligned(4))) {
32 uint32_t REG[64];
34
36#define NEORV32_CFS ((neorv32_cfs_t*) (NEORV32_CFS_BASE))
40/**********************************************************************/
44int neorv32_cfs_available(void);
48#endif // neorv32_cfs_h
int neorv32_cfs_available(void)
Definition neorv32_cfs.c:29
Definition neorv32_cfs.h:31