summaryrefslogtreecommitdiff
path: root/include/mips.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/mips.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/mips.h b/include/mips.h
new file mode 100644
index 0000000..79b516b
--- /dev/null
+++ b/include/mips.h
@@ -0,0 +1,16 @@
+/* Copyright (c) 2024 Freya Murphy */
+
+#ifndef __MIPS_H__
+#define __MIPS_H__
+
+#include <mips32.h>
+
+union mips_instruction {
+ struct mips32_instruction mips32;
+};
+
+union mips_directive {
+ struct mips32_directive mips32;
+};
+
+#endif /* __MIPS_H */