We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f35735b commit da415cfCopy full SHA for da415cf
README.md
@@ -0,0 +1,27 @@
1
+# :computer: MIPS Pipeline Processor simulator
2
+
3
+<img src="arch.png" width="600px">
4
5
+## Usage
6
7
+### Clone or Download
8
+Clone or Download project as a zip file and import to your python environment
9
10
+### Code with binary instructions
11
+Edit "Instruction.txt" file and insert your binary codes like this:
12
+```binary
13
+00000001000010010101000000100000
14
+00010001001010100000000000000011
15
+00000001000010010101000000100010
16
+```
17
18
+### CPU.py
19
+Just import CPU.py to your main file and create MIPS CPU:
20
+```python
21
+import CPU
22
23
+mips = CPU.MIPS('instruction.txt')
24
25
26
+### Opcodes
27
+Please check opcodes.py and functs.py that is equivalent with your architecture.
0 commit comments