1 /*
2  * Copyright (c) 2023, Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /*
8  * SWI
9  * https://infocenter.nordicsemi.com/topic/ps_nrf5340/swi.html?cp=4_0_0_6_32
10  *
11  * This file just allocates the RAM addresses booked for the SW interrupts
12  * This is with all likelihood a model of no-HW
13  */
14 
15 #include <stdint.h>
16 #include "NHW_config.h"
17 
18 int NRF_SWI_regs[NHW_SWI_TOTAL_INST];
19