Clean code

This commit is contained in:
Loic GUEGAN 2018-09-02 19:02:37 +02:00
parent 76d847cf01
commit 19ab0b8eb7

View file

@ -34,32 +34,32 @@ class Ram:
""" """
Write data to memory based Mic-1 architecture Write data to memory based Mic-1 architecture
""" """
addr=self.c["MAR"] addr=self.c["MAR"] # Fetch address
if addr>self.lastAddr or addr<0: if addr>self.lastAddr or addr<0:
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))
if self.c["MDR"] >=2**32: elif self.c["MDR"] >=2**32:
raise ValueError("You try to write a the value {} at address {} but this value does not fit in a int".format(self.c["MDR"],addr)) raise ValueError("You try to write a the value {} at address {} but this value does not fit in a int".format(self.c["MDR"],addr))
#### Split bytes and write #### #### Split bytes and write ####
self.data[addr+3]=self.c["MDR"] & 0xFF self.data[addr+3]=self.c["MDR"] & 0xFF
self.data[addr+2]=self.c["MDR"]>>8 & 0xFF self.data[addr+2]=self.c["MDR"]>>8 & 0xFF
self.data[addr+1]=self.c["MDR"]>>16 & 0xFF self.data[addr+1]=self.c["MDR"]>>16 & 0xFF
self.data[addr]=self.c["MDR"]>>24 & 0xFF self.data[addr]=self.c["MDR"]>>24 & 0xFF
###############################
def read(self): def read(self):
""" """
Read data from memory based Mic-1 architecture Read data from memory based Mic-1 architecture
""" """
addr=self.c["MAR"] addr=self.c["MAR"] # Fetch address
value=None if addr>self.lastAddr or addr<0:
try: raise ValueError("You get out of the ram by trying to get value at address {}, max address is {}".format(addr,self.lastAddr))
#### Combine bytes #### elif not(addr in self.data):
value=self.data[addr]<<24|(self.data[addr+1]<<16)|(self.data[addr+2]<<8)|(self.data[addr+3])
except:
if addr>self.lastAddr or addr<0:
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(0)
#### Combine bytes ####
value=self.data[addr]<<24|(self.data[addr+1]<<16)|(self.data[addr+2]<<8)|(self.data[addr+3])
#######################
return(value) return(value)
def fetch(self): def fetch(self):
@ -67,15 +67,11 @@ class Ram:
Fetch next byte from memory based Mic-1 architecture Fetch next byte from memory based Mic-1 architecture
""" """
addr=self.c["PC"] addr=self.c["PC"]
value=None if addr>self.lastAddr or addr<0:
try: raise ValueError("You get out of the ram by trying to get value at address {}, max address is {}".format(addr,self.lastAddr))
value=self.data[addr] elif not(addr in self.data):
except:
if addr>self.lastAddr or addr<0:
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(0)
return(value) return(self.data[addr])
def getData(self): def getData(self):
""" """