forked from auracaster/openocd
18 lines
244 B
C
18 lines
244 B
C
#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,
|
|
};
|