MicSim/micsim.py
2018-09-01 10:19:24 +02:00

16 lines
422 B
Python
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python
from components.microprogram import Microprogram
from components.ram import Ram
from components.caretaker import Caretaker
c=Caretaker() # Init components
RAM=Ram(c,5000) # Init ram
RAM.loadRamFile("./ram.txt") # Load Ram from file
c["RAM"]=RAM # Add ram to components
mic=Microprogram(c) # Create micro program
mic.run() # Run the micro program
mic.dump() # Dump ram