]> git.proxmox.com Git - mirror_qemu.git/blame - target-xtensa/core-fsf.c
target-xtensa: add fsf core
[mirror_qemu.git] / target-xtensa / core-fsf.c
CommitLineData
935f7a2b
MF
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
10static 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 .clock_freq_khz = 10000,
20};
21
22REGISTER_CORE(fsf)