diff options
Diffstat (limited to 'MicSim/micsim.py')
| -rwxr-xr-x | MicSim/micsim.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MicSim/micsim.py b/MicSim/micsim.py index 23a91fe..5ffa431 100755 --- a/MicSim/micsim.py +++ b/MicSim/micsim.py @@ -15,9 +15,9 @@ def dump(ram,title): # Simple Helper function c=Caretaker(5000) # Init components ram size in byte c["RAM"].loadRamFile("./ram.txt") # Load Ram from file -mic=Microprogram(c) # Create micro program +mic=Microprogram(c) # Create microprogram dump(c["RAM"], "Ram Before Execution") # Dump ram before execution -mic.run(800, 1024) # Run the micro program with run(constantPoolLocation,stackLocation) +mic.run(800, 1024) # Run the microprogram with run(constantPoolLocation,stackLocation) dump(c["RAM"],"Ram After Execution") # Dump ram after execution |
