Scaffolding.
parent
10bcfdad71
commit
48cf8eebf1
|
@ -36,6 +36,7 @@ libtarget_la_SOURCES = \
|
||||||
$(MIPS32_SRC) \
|
$(MIPS32_SRC) \
|
||||||
$(NDS32_SRC) \
|
$(NDS32_SRC) \
|
||||||
$(INTEL_IA32_SRC) \
|
$(INTEL_IA32_SRC) \
|
||||||
|
$(RISCV_SRC) \
|
||||||
avrt.c \
|
avrt.c \
|
||||||
dsp563xx.c \
|
dsp563xx.c \
|
||||||
dsp563xx_once.c \
|
dsp563xx_once.c \
|
||||||
|
@ -134,6 +135,9 @@ INTEL_IA32_SRC = \
|
||||||
lakemont.c \
|
lakemont.c \
|
||||||
x86_32_common.c
|
x86_32_common.c
|
||||||
|
|
||||||
|
RISCV_SRC = \
|
||||||
|
riscv.c
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
algorithm.h \
|
algorithm.h \
|
||||||
arm.h \
|
arm.h \
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "target.h"
|
||||||
|
#include "target_type.h"
|
||||||
|
|
||||||
|
static int riscv_poll(struct target *target)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct target_type riscv_target = {
|
||||||
|
.name = "riscv",
|
||||||
|
|
||||||
|
.poll = riscv_poll,
|
||||||
|
};
|
Loading…
Reference in New Issue