2011-10-16 02:56:06 +04:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
#include "gdbstub.h"
|
|
|
|
#include "host-utils.h"
|
|
|
|
|
|
|
|
#include "core-fsf/core-isa.h"
|
|
|
|
#include "overlay_tool.h"
|
|
|
|
|
|
|
|
static const XtensaConfig fsf = {
|
|
|
|
.name = "fsf",
|
|
|
|
.options = XTENSA_OPTIONS,
|
|
|
|
/* GDB for this core is not supported currently */
|
|
|
|
.nareg = XCHAL_NUM_AREGS,
|
|
|
|
.ndepc = 1,
|
|
|
|
EXCEPTIONS_SECTION,
|
|
|
|
INTERRUPTS_SECTION,
|
|
|
|
TLB_SECTION,
|
2012-01-13 10:10:49 +04:00
|
|
|
DEBUG_SECTION,
|
2011-10-16 02:56:06 +04:00
|
|
|
.clock_freq_khz = 10000,
|
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_CORE(fsf)
|