2026-03-16 15:08:31 +00:00
|
|
|
#if 0
|
2025-09-08 15:47:48 +01:00
|
|
|
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;
|
|
|
|
|
}
|
2026-03-16 15:08:31 +00:00
|
|
|
#endif
|