]> Git Repo - qemu.git/blob - target-xtensa/core-fsf.c
Merge branch 'arm-devs.for-upstream' of git://git.linaro.org/people/pmaydell/qemu-arm
[qemu.git] / target-xtensa / core-fsf.c
1 #include "cpu.h"
2 #include "exec-all.h"
3 #include "gdbstub.h"
4 #include "qemu-common.h"
5 #include "host-utils.h"
6
7 #include "core-fsf/core-isa.h"
8 #include "overlay_tool.h"
9
10 static const XtensaConfig fsf = {
11     .name = "fsf",
12     .options = XTENSA_OPTIONS,
13     /* GDB for this core is not supported currently */
14     .nareg = XCHAL_NUM_AREGS,
15     .ndepc = 1,
16     EXCEPTIONS_SECTION,
17     INTERRUPTS_SECTION,
18     TLB_SECTION,
19     DEBUG_SECTION,
20     .clock_freq_khz = 10000,
21 };
22
23 REGISTER_CORE(fsf)
This page took 0.025581 seconds and 4 git commands to generate.