16 lines
259 B
C
16 lines
259 B
C
/* 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 */
|