/* Copyright (c) 2024 Freya Murphy */ #ifndef __MIPS_H__ #define __MIPS_H__ #include union mips_instruction { struct mips32_instruction mips32; }; union mips_directive { struct mips32_directive mips32; }; #endif /* __MIPS_H */