1,012 B
1,012 B
MicSim
Hi! Welcome to MicSim project repo. MicSim is a Mic-1 architecture simulator written in python. It is specially design for studying purpose.
How it works ?
It is simple, you have to:
- Clone the repo
- Execute micsim.py
- Enjoy !
I want to know more about it....
Source code is located in MicSim folder. All the components used for the Mic-1 architecture are located in MicSim/components folder:
- ijvm.py Contains standard IJVM constant
- microprogram.py Contains IJVM implementation that use Mic-1 architecture
- caretaker.py Hold all the Mic-1 architecture components (registers, ram etc..)
- ram.py Contains a simple RAM implementation
How to load code in memory ?
Simply by editing ram.txt. Each line corresponding to a byte entry starting from address 0x0 to whatever to +\infty
. Each line can be an IJVM opcode or a random byte. Here is an example of how to add two number:
BIPUSH
12
BIPUSH
5
IADD