From 35e0ab7e69d917e8bd0b0de6349677c84903b664 Mon Sep 17 00:00:00 2001 From: espes Date: Sun, 5 Apr 2015 21:17:31 -0700 Subject: [PATCH] kill dsp_core --- hw/xbox/dsp/Makefile.objs | 2 +- hw/xbox/dsp/dsp.c | 92 ++++++++++++++++++--- hw/xbox/dsp/dsp.h | 6 ++ hw/xbox/dsp/dsp_core.c | 101 ----------------------- hw/xbox/dsp/dsp_core.h | 103 ------------------------ hw/xbox/dsp/dsp_cpu.c | 5 +- hw/xbox/dsp/dsp_cpu.h | 90 --------------------- hw/xbox/dsp/dsp_disasm.c | 3 +- hw/xbox/dsp/dsp_disasm.h | 2 + hw/xbox/dsp/dsp_int.h | 164 ++++++++++++++++++++++++++++++++++++++ 10 files changed, 260 insertions(+), 308 deletions(-) delete mode 100644 hw/xbox/dsp/dsp_core.c delete mode 100644 hw/xbox/dsp/dsp_core.h create mode 100644 hw/xbox/dsp/dsp_int.h diff --git a/hw/xbox/dsp/Makefile.objs b/hw/xbox/dsp/Makefile.objs index 76ec7e27f9..073e7adb92 100644 --- a/hw/xbox/dsp/Makefile.objs +++ b/hw/xbox/dsp/Makefile.objs @@ -1 +1 @@ -obj-y += dsp.o dsp_core.o dsp_cpu.o dsp_disasm.o +obj-y += dsp.o dsp_cpu.o dsp_disasm.o diff --git a/hw/xbox/dsp/dsp.c b/hw/xbox/dsp/dsp.c index 5119d06459..2c3911f145 100644 --- a/hw/xbox/dsp/dsp.c +++ b/hw/xbox/dsp/dsp.c @@ -26,7 +26,7 @@ #include "dsp_cpu.h" #include "dsp_disasm.h" -#include "dsp_core.h" +#include "dsp_int.h" #include "dsp.h" @@ -34,12 +34,7 @@ #define BITMASK(x) ((1<<(x))-1) #define ARRAYSIZE(x) (int)(sizeof(x)/sizeof(x[0])) -#define DEBUG 0 -#if DEBUG -#define DPRINTF(a) printf a -#else -#define DPRINTF(a) -#endif +#define DPRINTF(s, ...) fprintf(stderr, s, ## __VA_ARGS__) static int32_t save_cycles; @@ -80,9 +75,9 @@ void dsp_reset(void) /** * Run DSP for certain cycles */ -void dsp_run(int nHostCycles) +void dsp_run(int cycles) { - save_cycles += nHostCycles * 2; + save_cycles += cycles; if (dsp_core.running == 0) return; @@ -455,3 +450,82 @@ bool dsp_disasm_set_register(const char *arg, uint32_t value) } return false; } + + + + + + + + + + + + +/*--- the DSP core itself ---*/ +dsp_core_t dsp_core; + +static void (*dsp_host_interrupt)(void); /* Function to trigger host interrupt */ + +/* Init DSP emulation */ +void dsp_core_init(void (*host_interrupt)(void)) +{ + DPRINTF("Dsp: core init\n"); + + dsp_host_interrupt = host_interrupt; + memset(&dsp_core, 0, sizeof(dsp_core_t)); +} + +/* Shutdown DSP emulation */ +void dsp_core_shutdown(void) +{ + dsp_core.running = 0; + DPRINTF("Dsp: core shutdown\n"); +} + +/* Reset */ +void dsp_core_reset(void) +{ + int i; + + DPRINTF("Dsp: core reset\n"); + dsp_core_shutdown(); + + /* Memory */ + memset(dsp_core.periph, 0, sizeof(dsp_core.periph)); + memset(dsp_core.stack, 0, sizeof(dsp_core.stack)); + memset(dsp_core.registers, 0, sizeof(dsp_core.registers)); + // dsp_core.dsp_host_rtx = 0; + // dsp_core.dsp_host_htx = 0; + + /* Registers */ + dsp_core.pc = 0x0000; + dsp_core.registers[DSP_REG_OMR]=0x02; + for (i=0;i<8;i++) { + dsp_core.registers[DSP_REG_M0+i]=0x00ffff; + } + + /* Interruptions */ + memset((void*)dsp_core.interrupt_isPending, 0, sizeof(dsp_core.interrupt_isPending)); + dsp_core.interrupt_state = DSP_INTERRUPT_NONE; + dsp_core.interrupt_instr_fetch = -1; + dsp_core.interrupt_save_pc = -1; + dsp_core.interrupt_counter = 0; + dsp_core.interrupt_pipeline_count = 0; + for (i=0;i<5;i++) { + dsp_core.interrupt_ipl[i] = 3; + } + for (i=5;i<12;i++) { + dsp_core.interrupt_ipl[i] = -1; + } + + /* Other hardware registers */ + // dsp_core.periph[DSP_SPACE_X][DSP_IPR]=0; + // dsp_core.periph[DSP_SPACE_X][DSP_BCR]=0xffff; + + /* Misc */ + dsp_core.loop_rep = 0; + + DPRINTF("Dsp: reset done\n"); + dsp56k_init_cpu(); +} \ No newline at end of file diff --git a/hw/xbox/dsp/dsp.h b/hw/xbox/dsp/dsp.h index f6abb4f435..384ba28acb 100644 --- a/hw/xbox/dsp/dsp.h +++ b/hw/xbox/dsp/dsp.h @@ -33,6 +33,12 @@ void dsp_uninit(void); void dsp_reset(void); void dsp_run(int nHostCycles); +/* Emulator call these to init/stop/reset DSP emulation */ +void dsp_core_init(void (*host_interrupt)(void)); +void dsp_core_shutdown(void); +void dsp_core_reset(void); + + /* Dsp Debugger commands */ uint32_t dsp_get_pc(void); uint32_t dsp_get_next_pc(uint32_t pc); diff --git a/hw/xbox/dsp/dsp_core.c b/hw/xbox/dsp/dsp_core.c deleted file mode 100644 index 44222a18be..0000000000 --- a/hw/xbox/dsp/dsp_core.c +++ /dev/null @@ -1,101 +0,0 @@ -/* - DSP56300 emulation - - Based on Hatari DSP M56001 emulation - (C) 2003-2008 ARAnyM developer team - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - - -#include -#include -#include - -#include "dsp.h" -#include "dsp_cpu.h" - -#include "dsp_core.h" - -/*--- the DSP core itself ---*/ -dsp_core_t dsp_core; - -static void (*dsp_host_interrupt)(void); /* Function to trigger host interrupt */ - -#define DPRINTF(s, ...) fprintf(stderr, s, ## __VA_ARGS__) - -/* Init DSP emulation */ -void dsp_core_init(void (*host_interrupt)(void)) -{ - DPRINTF("Dsp: core init\n"); - - dsp_host_interrupt = host_interrupt; - memset(&dsp_core, 0, sizeof(dsp_core_t)); -} - -/* Shutdown DSP emulation */ -void dsp_core_shutdown(void) -{ - dsp_core.running = 0; - DPRINTF("Dsp: core shutdown\n"); -} - -/* Reset */ -void dsp_core_reset(void) -{ - int i; - - DPRINTF("Dsp: core reset\n"); - dsp_core_shutdown(); - - /* Memory */ - memset(dsp_core.periph, 0, sizeof(dsp_core.periph)); - memset(dsp_core.stack, 0, sizeof(dsp_core.stack)); - memset(dsp_core.registers, 0, sizeof(dsp_core.registers)); - // dsp_core.dsp_host_rtx = 0; - // dsp_core.dsp_host_htx = 0; - - /* Registers */ - dsp_core.pc = 0x0000; - dsp_core.registers[DSP_REG_OMR]=0x02; - for (i=0;i<8;i++) { - dsp_core.registers[DSP_REG_M0+i]=0x00ffff; - } - - /* Interruptions */ - memset((void*)dsp_core.interrupt_isPending, 0, sizeof(dsp_core.interrupt_isPending)); - dsp_core.interrupt_state = DSP_INTERRUPT_NONE; - dsp_core.interrupt_instr_fetch = -1; - dsp_core.interrupt_save_pc = -1; - dsp_core.interrupt_counter = 0; - dsp_core.interrupt_pipeline_count = 0; - for (i=0;i<5;i++) { - dsp_core.interrupt_ipl[i] = 3; - } - for (i=5;i<12;i++) { - dsp_core.interrupt_ipl[i] = -1; - } - - /* Other hardware registers */ - // dsp_core.periph[DSP_SPACE_X][DSP_IPR]=0; - // dsp_core.periph[DSP_SPACE_X][DSP_BCR]=0xffff; - - /* Misc */ - dsp_core.loop_rep = 0; - - DPRINTF("Dsp: reset done\n"); - dsp56k_init_cpu(); -} - diff --git a/hw/xbox/dsp/dsp_core.h b/hw/xbox/dsp/dsp_core.h deleted file mode 100644 index b1aa210fbc..0000000000 --- a/hw/xbox/dsp/dsp_core.h +++ /dev/null @@ -1,103 +0,0 @@ -/* - DSP56300 emulation - - Based on Hatari DSP M56001 emulation - (C) 2003-2008 ARAnyM developer team - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -#ifndef DSP_CORE_H -#define DSP_CORE_H - -#include - -#include "dsp_cpu.h" - -#define DSP_INTERRUPT_NONE 0x0 -#define DSP_INTERRUPT_DISABLED 0x1 -#define DSP_INTERRUPT_LONG 0x2 - -#define DSP_INTER_RESET 0x0 -#define DSP_INTER_ILLEGAL 0x1 -#define DSP_INTER_STACK_ERROR 0x2 -#define DSP_INTER_TRACE 0x3 -#define DSP_INTER_SWI 0x4 -#define DSP_INTER_HOST_COMMAND 0x5 -#define DSP_INTER_HOST_RCV_DATA 0x6 -#define DSP_INTER_HOST_TRX_DATA 0x7 -#define DSP_INTER_SSI_RCV_DATA_E 0x8 -#define DSP_INTER_SSI_RCV_DATA 0x9 -#define DSP_INTER_SSI_TRX_DATA_E 0xa -#define DSP_INTER_SSI_TRX_DATA 0xb - - -typedef struct dsp_core_s dsp_core_t; -typedef struct dsp_interrupt_s dsp_interrupt_t; - -struct dsp_interrupt_s { - const uint16_t inter; - const uint16_t vectorAddr; - const uint16_t periph; - const char *name; -}; - -struct dsp_core_s { - - /* DSP executing instructions ? */ - int running; - - /* DSP instruction Cycle counter */ - uint16_t instr_cycle; - - /* Registers */ - uint32_t pc; - uint32_t registers[DSP_REG_MAX]; - - /* stack[0=ssh], stack[1=ssl] */ - uint32_t stack[2][16]; - - uint32_t xram[DSP_XRAM_SIZE]; - uint32_t yram[DSP_YRAM_SIZE]; - uint32_t pram[DSP_PRAM_SIZE]; - - /* peripheral space, x:0xffff80-0xffffff */ - uint32_t periph[DSP_PERIPH_SIZE]; - - /* Misc */ - uint32_t loop_rep; /* executing rep ? */ - uint32_t pc_on_rep; /* True if PC is on REP instruction */ - - /* Interruptions */ - uint16_t interrupt_state; /* NONE, FAST or LONG interrupt */ - uint16_t interrupt_instr_fetch; /* vector of the current interrupt */ - uint16_t interrupt_save_pc; /* save next pc value before interrupt */ - uint16_t interrupt_counter; /* count number of pending interrupts */ - uint16_t interrupt_IplToRaise; /* save the IPL level to save in the SR register */ - uint16_t interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */ - int16_t interrupt_ipl[12]; /* store the current IPL for each interrupt */ - uint16_t interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */ -}; - - -/* DSP */ -extern dsp_core_t dsp_core; - -/* Emulator call these to init/stop/reset DSP emulation */ -void dsp_core_init(void (*host_interrupt)(void)); -void dsp_core_shutdown(void); -void dsp_core_reset(void); - -#endif /* DSP_CORE_H */ diff --git a/hw/xbox/dsp/dsp_cpu.c b/hw/xbox/dsp/dsp_cpu.c index bab02728db..128b58d357 100644 --- a/hw/xbox/dsp/dsp_cpu.c +++ b/hw/xbox/dsp/dsp_cpu.c @@ -23,9 +23,10 @@ #include #include -#include "dsp_core.h" -#include "dsp_cpu.h" #include "dsp_disasm.h" +#include "dsp_int.h" + +#include "dsp_cpu.h" #define TRACE_DSP_DISASM 1 #define TRACE_DSP_DISASM_REG 1 diff --git a/hw/xbox/dsp/dsp_cpu.h b/hw/xbox/dsp/dsp_cpu.h index 44ca84ffdc..220462269a 100644 --- a/hw/xbox/dsp/dsp_cpu.h +++ b/hw/xbox/dsp/dsp_cpu.h @@ -25,96 +25,6 @@ #include #include -#define DSP_OMR_MA 0x00 -#define DSP_OMR_MB 0x01 -#define DSP_OMR_DE 0x02 -#define DSP_OMR_SD 0x06 -#define DSP_OMR_EA 0x07 - -#define DSP_SR_C 0x00 -#define DSP_SR_V 0x01 -#define DSP_SR_Z 0x02 -#define DSP_SR_N 0x03 -#define DSP_SR_U 0x04 -#define DSP_SR_E 0x05 -#define DSP_SR_L 0x06 - -#define DSP_SR_I0 0x08 -#define DSP_SR_I1 0x09 -#define DSP_SR_S0 0x0a -#define DSP_SR_S1 0x0b -#define DSP_SR_T 0x0d -#define DSP_SR_LF 0x0f - -#define DSP_SP_SE 0x04 -#define DSP_SP_UF 0x05 - -/* Registers numbers in dsp.registers[] */ -#define DSP_REG_X0 0x04 -#define DSP_REG_X1 0x05 -#define DSP_REG_Y0 0x06 -#define DSP_REG_Y1 0x07 -#define DSP_REG_A0 0x08 -#define DSP_REG_B0 0x09 -#define DSP_REG_A2 0x0a -#define DSP_REG_B2 0x0b -#define DSP_REG_A1 0x0c -#define DSP_REG_B1 0x0d -#define DSP_REG_A 0x0e -#define DSP_REG_B 0x0f - -#define DSP_REG_R0 0x10 -#define DSP_REG_R1 0x11 -#define DSP_REG_R2 0x12 -#define DSP_REG_R3 0x13 -#define DSP_REG_R4 0x14 -#define DSP_REG_R5 0x15 -#define DSP_REG_R6 0x16 -#define DSP_REG_R7 0x17 - -#define DSP_REG_N0 0x18 -#define DSP_REG_N1 0x19 -#define DSP_REG_N2 0x1a -#define DSP_REG_N3 0x1b -#define DSP_REG_N4 0x1c -#define DSP_REG_N5 0x1d -#define DSP_REG_N6 0x1e -#define DSP_REG_N7 0x1f - -#define DSP_REG_M0 0x20 -#define DSP_REG_M1 0x21 -#define DSP_REG_M2 0x22 -#define DSP_REG_M3 0x23 -#define DSP_REG_M4 0x24 -#define DSP_REG_M5 0x25 -#define DSP_REG_M6 0x26 -#define DSP_REG_M7 0x27 - -#define DSP_REG_SR 0x39 -#define DSP_REG_OMR 0x3a -#define DSP_REG_SP 0x3b -#define DSP_REG_SSH 0x3c -#define DSP_REG_SSL 0x3d -#define DSP_REG_LA 0x3e -#define DSP_REG_LC 0x3f - -#define DSP_REG_NULL 0x00 -#define DSP_REG_LCSAVE 0x30 - -#define DSP_REG_MAX 0x40 - -/* Memory spaces for dsp.ram[], dsp.rom[] */ -#define DSP_SPACE_X 0x00 -#define DSP_SPACE_Y 0x01 -#define DSP_SPACE_P 0x02 - -#define DSP_XRAM_SIZE 4096 -#define DSP_YRAM_SIZE 2048 -#define DSP_PRAM_SIZE 4096 - -#define DSP_PERIPH_BASE 0xFFFF80 -#define DSP_PERIPH_SIZE 128 - /* Functions */ void dsp56k_init_cpu(void); /* Set dsp_core to use */ void dsp56k_execute_instruction(void); /* Execute 1 instruction */ diff --git a/hw/xbox/dsp/dsp_disasm.c b/hw/xbox/dsp/dsp_disasm.c index 7bcb467e2e..4970782391 100644 --- a/hw/xbox/dsp/dsp_disasm.c +++ b/hw/xbox/dsp/dsp_disasm.c @@ -24,11 +24,10 @@ #include #include -#include "dsp_core.h" #include "dsp_cpu.h" +#include "dsp_int.h" #include "dsp_disasm.h" - /* More disasm infos, if wanted */ #define DSP_DISASM_REG_PC 0 diff --git a/hw/xbox/dsp/dsp_disasm.h b/hw/xbox/dsp/dsp_disasm.h index 0f265460a7..4a8085cac0 100644 --- a/hw/xbox/dsp/dsp_disasm.h +++ b/hw/xbox/dsp/dsp_disasm.h @@ -22,6 +22,8 @@ #ifndef DSP_DISASM_H #define DSP_DISASM_H +#include + typedef enum { DSP_TRACE_MODE, DSP_DISASM_MODE diff --git a/hw/xbox/dsp/dsp_int.h b/hw/xbox/dsp/dsp_int.h new file mode 100644 index 0000000000..09276cf051 --- /dev/null +++ b/hw/xbox/dsp/dsp_int.h @@ -0,0 +1,164 @@ +#ifndef DSP_INT_H +#define DSP_INT_H + +#include + +#define DSP_OMR_MA 0x00 +#define DSP_OMR_MB 0x01 +#define DSP_OMR_DE 0x02 +#define DSP_OMR_SD 0x06 +#define DSP_OMR_EA 0x07 + +#define DSP_SR_C 0x00 +#define DSP_SR_V 0x01 +#define DSP_SR_Z 0x02 +#define DSP_SR_N 0x03 +#define DSP_SR_U 0x04 +#define DSP_SR_E 0x05 +#define DSP_SR_L 0x06 + +#define DSP_SR_I0 0x08 +#define DSP_SR_I1 0x09 +#define DSP_SR_S0 0x0a +#define DSP_SR_S1 0x0b +#define DSP_SR_T 0x0d +#define DSP_SR_LF 0x0f + +#define DSP_SP_SE 0x04 +#define DSP_SP_UF 0x05 + +/* Registers numbers in dsp.registers[] */ +#define DSP_REG_X0 0x04 +#define DSP_REG_X1 0x05 +#define DSP_REG_Y0 0x06 +#define DSP_REG_Y1 0x07 +#define DSP_REG_A0 0x08 +#define DSP_REG_B0 0x09 +#define DSP_REG_A2 0x0a +#define DSP_REG_B2 0x0b +#define DSP_REG_A1 0x0c +#define DSP_REG_B1 0x0d +#define DSP_REG_A 0x0e +#define DSP_REG_B 0x0f + +#define DSP_REG_R0 0x10 +#define DSP_REG_R1 0x11 +#define DSP_REG_R2 0x12 +#define DSP_REG_R3 0x13 +#define DSP_REG_R4 0x14 +#define DSP_REG_R5 0x15 +#define DSP_REG_R6 0x16 +#define DSP_REG_R7 0x17 + +#define DSP_REG_N0 0x18 +#define DSP_REG_N1 0x19 +#define DSP_REG_N2 0x1a +#define DSP_REG_N3 0x1b +#define DSP_REG_N4 0x1c +#define DSP_REG_N5 0x1d +#define DSP_REG_N6 0x1e +#define DSP_REG_N7 0x1f + +#define DSP_REG_M0 0x20 +#define DSP_REG_M1 0x21 +#define DSP_REG_M2 0x22 +#define DSP_REG_M3 0x23 +#define DSP_REG_M4 0x24 +#define DSP_REG_M5 0x25 +#define DSP_REG_M6 0x26 +#define DSP_REG_M7 0x27 + +#define DSP_REG_SR 0x39 +#define DSP_REG_OMR 0x3a +#define DSP_REG_SP 0x3b +#define DSP_REG_SSH 0x3c +#define DSP_REG_SSL 0x3d +#define DSP_REG_LA 0x3e +#define DSP_REG_LC 0x3f + +#define DSP_REG_NULL 0x00 +#define DSP_REG_LCSAVE 0x30 + +#define DSP_REG_MAX 0x40 + +/* Memory spaces for dsp.ram[], dsp.rom[] */ +#define DSP_SPACE_X 0x00 +#define DSP_SPACE_Y 0x01 +#define DSP_SPACE_P 0x02 + +#define DSP_XRAM_SIZE 4096 +#define DSP_YRAM_SIZE 2048 +#define DSP_PRAM_SIZE 4096 + +#define DSP_PERIPH_BASE 0xFFFF80 +#define DSP_PERIPH_SIZE 128 + + + + +#define DSP_INTERRUPT_NONE 0x0 +#define DSP_INTERRUPT_DISABLED 0x1 +#define DSP_INTERRUPT_LONG 0x2 + +#define DSP_INTER_RESET 0x0 +#define DSP_INTER_ILLEGAL 0x1 +#define DSP_INTER_STACK_ERROR 0x2 +#define DSP_INTER_TRACE 0x3 +#define DSP_INTER_SWI 0x4 +#define DSP_INTER_HOST_COMMAND 0x5 +#define DSP_INTER_HOST_RCV_DATA 0x6 +#define DSP_INTER_HOST_TRX_DATA 0x7 +#define DSP_INTER_SSI_RCV_DATA_E 0x8 +#define DSP_INTER_SSI_RCV_DATA 0x9 +#define DSP_INTER_SSI_TRX_DATA_E 0xa +#define DSP_INTER_SSI_TRX_DATA 0xb + + +typedef struct dsp_interrupt_s { + const uint16_t inter; + const uint16_t vectorAddr; + const uint16_t periph; + const char *name; +} dsp_interrupt_t; + +typedef struct dsp_core_s { + + /* DSP executing instructions ? */ + int running; + + /* DSP instruction Cycle counter */ + uint16_t instr_cycle; + + /* Registers */ + uint32_t pc; + uint32_t registers[DSP_REG_MAX]; + + /* stack[0=ssh], stack[1=ssl] */ + uint32_t stack[2][16]; + + uint32_t xram[DSP_XRAM_SIZE]; + uint32_t yram[DSP_YRAM_SIZE]; + uint32_t pram[DSP_PRAM_SIZE]; + + /* peripheral space, x:0xffff80-0xffffff */ + uint32_t periph[DSP_PERIPH_SIZE]; + + /* Misc */ + uint32_t loop_rep; /* executing rep ? */ + uint32_t pc_on_rep; /* True if PC is on REP instruction */ + + /* Interruptions */ + uint16_t interrupt_state; /* NONE, FAST or LONG interrupt */ + uint16_t interrupt_instr_fetch; /* vector of the current interrupt */ + uint16_t interrupt_save_pc; /* save next pc value before interrupt */ + uint16_t interrupt_counter; /* count number of pending interrupts */ + uint16_t interrupt_IplToRaise; /* save the IPL level to save in the SR register */ + uint16_t interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */ + int16_t interrupt_ipl[12]; /* store the current IPL for each interrupt */ + uint16_t interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */ +} dsp_core_t; + +/* DSP */ +extern dsp_core_t dsp_core; + +#endif \ No newline at end of file