@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
cpu_regs.h
1/*
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
15#ifndef _PICO_PLATFORM_CPU_REGS_H
16#define _PICO_PLATFORM_CPU_REGS_H
17
18#include "hardware/regs/m0plus.h"
19#define ARM_CPU_PREFIXED(x) M0PLUS_ ## x
20
21#ifndef __ASSEMBLER__
22#include "hardware/structs/m0plus.h"
23#define arm_cpu_hw m0plus_hw
24#include "hardware/structs/nvic.h"
25#include "hardware/structs/scb.h"
26#endif
27
28#endif