asm: implement a mie backend for ivy assembly generation
This commit is contained in:
13
asm/mie/target.c
Normal file
13
asm/mie/target.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user