Files
ivy/asm/mie/target.c

14 lines
268 B
C

#include <mie/target/target.h>
extern const struct mie_target_select_ops __ivy_select_ops;
static const struct mie_target ivy_target = {
.t_name = "Ivy",
.t_select = &__ivy_select_ops,
};
const struct mie_target *ivy_asm_mie_target(void)
{
return &ivy_target;
}