2018-08-31 18:42:12 +02:00
|
|
|
|
from components.ijvm import ijvm
|
|
|
|
|
|
|
|
|
|
class Ram:
|
|
|
|
|
|
|
|
|
|
def __init__(self,components,size):
|
|
|
|
|
self.data=dict()
|
|
|
|
|
self.lastAddr=size-1
|
|
|
|
|
self.c=components
|
|
|
|
|
|
|
|
|
|
def loadRamFile(self,filepath):
|
2018-08-31 20:18:08 +02:00
|
|
|
|
"""
|
|
|
|
|
Load a Ram file into self.data
|
|
|
|
|
"""
|
2018-08-31 18:42:12 +02:00
|
|
|
|
data=dict()
|
|
|
|
|
addr=0
|
|
|
|
|
f=open(filepath,"r")
|
|
|
|
|
for line in f.readlines():
|
|
|
|
|
line=line.rstrip() # remove \n
|
|
|
|
|
if line in ijvm:
|
|
|
|
|
data[addr]=int(ijvm[line])
|
|
|
|
|
else:
|
2018-09-01 17:22:49 +02:00
|
|
|
|
try:
|
|
|
|
|
value=int(line,0)
|
|
|
|
|
except:
|
|
|
|
|
raise ValueError("Invalide RAM entry: Address {} value {}".format(addr,line))
|
|
|
|
|
if value>255:
|
|
|
|
|
raise ValueError("Ram contain values that does not fit in a byte: value {} at address {}".format(value,addr))
|
|
|
|
|
data[addr]=value
|
2018-08-31 18:42:12 +02:00
|
|
|
|
addr+=1
|
|
|
|
|
f.close()
|
|
|
|
|
self.data=data
|
|
|
|
|
|
|
|
|
|
def write(self):
|
2018-08-31 20:18:08 +02:00
|
|
|
|
"""
|
|
|
|
|
Write data to memory based Mic-1 architecture
|
|
|
|
|
"""
|
2018-08-31 18:42:12 +02:00
|
|
|
|
addr=self.c["MAR"]
|
|
|
|
|
if addr>self.lastAddr:
|
|
|
|
|
raise ValueError("You get out of the ram by trying to set a value at address {}, max address is {}".format(addr,self.lastAddr))
|
|
|
|
|
self.data[addr]=self.c["MDR"]
|
|
|
|
|
|
|
|
|
|
def read(self):
|
2018-08-31 20:18:08 +02:00
|
|
|
|
"""
|
|
|
|
|
Read data from memory based Mic-1 architecture
|
|
|
|
|
"""
|
2018-08-31 18:42:12 +02:00
|
|
|
|
addr=self.c["MAR"]
|
|
|
|
|
value=None
|
|
|
|
|
try:
|
|
|
|
|
value=self.data[addr]
|
|
|
|
|
except:
|
|
|
|
|
if addr>self.lastAddr:
|
|
|
|
|
raise ValueError("You get out of the ram by trying to get value at address {}, max address is {}".format(addr,self.lastAddr))
|
|
|
|
|
if(value==None):
|
|
|
|
|
return(0)
|
|
|
|
|
return(value)
|
|
|
|
|
|
|
|
|
|
def fetch(self):
|
2018-08-31 20:18:08 +02:00
|
|
|
|
"""
|
|
|
|
|
Fetch next byte from memory based Mic-1 architecture
|
|
|
|
|
"""
|
2018-08-31 18:42:12 +02:00
|
|
|
|
addr=self.c["PC"]
|
|
|
|
|
value=None
|
|
|
|
|
try:
|
|
|
|
|
value=self.data[addr]
|
|
|
|
|
except:
|
|
|
|
|
if addr>self.lastAddr:
|
|
|
|
|
raise ValueError("You get out of the ram by trying to get value at address {}, max address is {}".format(addr,self.lastAddr))
|
|
|
|
|
if(value==None):
|
|
|
|
|
return(0)
|
|
|
|
|
return(value)
|
|
|
|
|
|
|
|
|
|
def dump(self):
|
2018-08-31 20:18:08 +02:00
|
|
|
|
"""
|
|
|
|
|
Simple dump helper
|
|
|
|
|
"""
|
2018-08-31 18:42:12 +02:00
|
|
|
|
for key,value in self.data.items():
|
|
|
|
|
#print("{}:{}".format(key,bin(value)[2:]))
|
|
|
|
|
print("{}:{}".format(key,value))
|
|
|
|
|
|
2018-08-31 20:11:10 +02:00
|
|
|
|
def dumpRange(self,start,end):
|
2018-08-31 20:18:08 +02:00
|
|
|
|
"""
|
|
|
|
|
Another dump helper
|
|
|
|
|
"""
|
2018-08-31 18:42:12 +02:00
|
|
|
|
for i in range(start,end+1):
|
|
|
|
|
try:
|
|
|
|
|
print("{}:{}".format(i,self.data[i]))
|
|
|
|
|
except:
|
|
|
|
|
print("{}:0".format(i))
|