]> Git Repo - qemu.git/blob - target-xtensa/core-fsf.c
Merge remote-tracking branch 'qemu-kvm-tmp/memory/int128' into staging
[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     .clock_freq_khz = 10000,
20 };
21
22 REGISTER_CORE(fsf)
This page took 0.024845 seconds and 4 git commands to generate.