Clean code

This commit is contained in:
Loic GUEGAN 2018-08-31 20:18:08 +02:00
parent 10279426e5
commit 84de7cd481
4 changed files with 24 additions and 3 deletions

View file

@ -9,10 +9,11 @@ class Caretaker:
self.objects[reg]=0 self.objects[reg]=0
self.objects["RAM"]=None self.objects["RAM"]=None
def __getitem__(self,key): def __getitem__(self,key): # TODO: Allow MBRU key and adapt its return value
return(self.objects[key]) return(self.objects[key])
def __setitem__(self,key,value):# TODO: Do special treatment for MBR def __setitem__(self,key,value):# TODO: Do special treatment for MBR (allow only 2^8 value)
# TODO: Force data to be at most 32 bits longs (Mic-1 architecture constraint)
self.objects[key]=value self.objects[key]=value
def items(self): def items(self):

View file

@ -1,4 +1,6 @@
# Quick link about opcode: https://users-cs.au.dk/bouvin/dComArk/2015/noter/Note_2/#Instructions
# Build IJVM # Build IJVM
ijvm=dict({ ijvm=dict({
"BIPUSH":0x10, "BIPUSH":0x10,

View file

@ -41,7 +41,7 @@ class Microprogram:
""" """
self.c["RAM"].write() self.c["RAM"].write()
def exec(self):# link: https://users-cs.au.dk/bouvin/dComArk/2015/noter/Note_2/#Instructions def exec(self): # TODO: Implement opcode
""" """
Execute next opcode Execute next opcode
""" """

View file

@ -8,6 +8,9 @@ class Ram:
self.c=components self.c=components
def loadRamFile(self,filepath): def loadRamFile(self,filepath):
"""
Load a Ram file into self.data
"""
data=dict() data=dict()
addr=0 addr=0
f=open(filepath,"r") f=open(filepath,"r")
@ -22,12 +25,18 @@ class Ram:
self.data=data self.data=data
def write(self): def write(self):
"""
Write data to memory based Mic-1 architecture
"""
addr=self.c["MAR"] addr=self.c["MAR"]
if addr>self.lastAddr: 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)) 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"] self.data[addr]=self.c["MDR"]
def read(self): def read(self):
"""
Read data from memory based Mic-1 architecture
"""
addr=self.c["MAR"] addr=self.c["MAR"]
value=None value=None
try: try:
@ -40,6 +49,9 @@ class Ram:
return(value) return(value)
def fetch(self): def fetch(self):
"""
Fetch next byte from memory based Mic-1 architecture
"""
addr=self.c["PC"] addr=self.c["PC"]
value=None value=None
try: try:
@ -52,11 +64,17 @@ class Ram:
return(value) return(value)
def dump(self): def dump(self):
"""
Simple dump helper
"""
for key,value in self.data.items(): for key,value in self.data.items():
#print("{}:{}".format(key,bin(value)[2:])) #print("{}:{}".format(key,bin(value)[2:]))
print("{}:{}".format(key,value)) print("{}:{}".format(key,value))
def dumpRange(self,start,end): def dumpRange(self,start,end):
"""
Another dump helper
"""
for i in range(start,end+1): for i in range(start,end+1):
try: try:
print("{}:{}".format(i,self.data[i])) print("{}:{}".format(i,self.data[i]))