blob: ba338930aa9536c45fb2ae02165a5c3f023c13e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright (c) 2024 Freya Murphy */
#ifndef __MIPS_H__
#define __MIPS_H__
#include <mips32.h>
enum mips_isa {
ISA_MIPS32
};
union mips_instruction {
struct mips32_instruction mips32;
};
union mips_directive {
struct mips32_directive mips32;
};
#endif /* __MIPS_H */
|