15 lines
421 B
Python
Executable file
15 lines
421 B
Python
Executable file
#!/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
|