diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-09 12:41:49 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-09 12:41:49 -0400 |
commit | 2ed275821676a0d5baea6c7fd843d71c72c2342c (patch) | |
tree | 480297f28e5c42d02a47b3b94027a7abe507d010 /include/mips.h | |
download | mips-2ed275821676a0d5baea6c7fd843d71c72c2342c.tar.gz mips-2ed275821676a0d5baea6c7fd843d71c72c2342c.tar.bz2 mips-2ed275821676a0d5baea6c7fd843d71c72c2342c.zip |
initial mips32 (r2000ish mips32r6) assembler
Diffstat (limited to 'include/mips.h')
-rw-r--r-- | include/mips.h | 16 |
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 */ |