blob: 79b516b21333e2af696c5332cb22e25f02eb8c1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 */
|