Scaffolding.

This commit is contained in:
Tim Newsome
2016-05-10 18:12:22 -07:00
parent 10bcfdad71
commit 48cf8eebf1
2 changed files with 21 additions and 0 deletions
+17
View File
@@ -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,
};