asm: implement a mie backend for ivy assembly generation

This commit is contained in:
2025-09-08 15:47:48 +01:00
parent 9f8bdc9365
commit ea42f738df
4 changed files with 737 additions and 2 deletions

13
asm/mie/target.c Normal file
View File

@@ -0,0 +1,13 @@
#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;
}