mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
5a30d3f19d
* 'upstream' of git://qemu.weilnetz.de/qemu: Move definition of HOST_LONG_BITS to qemu-common.h target-xtensa: Clean includes target-unicore32: Clean includes target-sh4: Clean includes target-s390x: Clean includes target-ppc: Clean includes target-mips: Clean includes target-microblaze: Clean includes target-m68k: Clean includes target-lm32: Clean includes target-i386: Clean includes target-cris: Clean includes target-arm: Clean includes target-alpha: Clean includes Remove macro HOST_LONG_SIZE
29 lines
565 B
C
29 lines
565 B
C
#include "cpu.h"
|
|
#include "exec-all.h"
|
|
#include "gdbstub.h"
|
|
#include "host-utils.h"
|
|
|
|
#include "core-dc232b/core-isa.h"
|
|
#include "overlay_tool.h"
|
|
|
|
static const XtensaConfig dc232b = {
|
|
.name = "dc232b",
|
|
.options = XTENSA_OPTIONS,
|
|
.gdb_regmap = {
|
|
.num_regs = 120,
|
|
.num_core_regs = 52,
|
|
.reg = {
|
|
#include "core-dc232b/gdb-config.c"
|
|
}
|
|
},
|
|
.nareg = XCHAL_NUM_AREGS,
|
|
.ndepc = 1,
|
|
EXCEPTIONS_SECTION,
|
|
INTERRUPTS_SECTION,
|
|
TLB_SECTION,
|
|
DEBUG_SECTION,
|
|
.clock_freq_khz = 10000,
|
|
};
|
|
|
|
REGISTER_CORE(dc232b)
|