18 lines
423 B
Python
18 lines
423 B
Python
![]() |
#!/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
|
|||
|
|
|||
|
|