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