2018-08-31 18:53:05 +02:00
# 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:
1. Clone the repo
2. Execute micsim.py
3. Enjoy !
### I want to know more about it....
2018-09-02 16:33:13 +02:00
Source code is located in _MicSim_ folder. All the components used for the Mic-1 architecture are
2018-09-02 16:31:49 +02:00
located in _MicSim/components_ folder:
2018-08-31 18:53:05 +02:00
- **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
2018-08-31 18:57:52 +02:00
### How to load code in memory ?
2018-08-31 20:10:48 +02:00
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:
2018-08-31 20:12:13 +02:00
> BIPUSH<br />
> 12<br />
> BIPUSH<br />
> 5<br />
> IADD<br />