14 lines
249 B
C
14 lines
249 B
C
#if 0
|
|
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;
|
|
}
|
|
#endif
|