diff options
Diffstat (limited to 'MicSim/components')
| -rw-r--r-- | MicSim/components/microprogram.py | 4 | ||||
| -rw-r--r-- | MicSim/components/ram.py | 18 |
2 files changed, 16 insertions, 6 deletions
diff --git a/MicSim/components/microprogram.py b/MicSim/components/microprogram.py index ec84886..c2a3552 100644 --- a/MicSim/components/microprogram.py +++ b/MicSim/components/microprogram.py @@ -32,7 +32,9 @@ class Microprogram: """ Read data into memory """ + self.c["MAR"]=self.c["MAR"]*4 # Don't forget MAR address 32bits block of memory little_endian=self.c["RAM"].read() + self.c["MAR"]=self.c["MAR"]/4 # Restore MAR ##### Build little endian version of MDR #### big_endian=(little_endian&0xFF)<<24 big_endian=big_endian|(((little_endian>>8)&0xFF)<<16) @@ -53,7 +55,9 @@ class Microprogram: ############################################## big_endian=self.c["MDR"] # Backup MDR before change it to little endian self.c["MDR"]=little_endian # Load little endian value + self.c["MAR"]=self.c["MAR"]*4 # Don't forget MAR address 32bits block of memory self.c["RAM"].write() # Write little endian value into memory + self.c["MAR"]=self.c["MAR"]/4 # Restore MAR self.c["MDR"]=big_endian # Restore big endian def exec(self): # TODO: Implement opcode diff --git a/MicSim/components/ram.py b/MicSim/components/ram.py index 6a5b02e..62edb0c 100644 --- a/MicSim/components/ram.py +++ b/MicSim/components/ram.py @@ -34,8 +34,8 @@ class Ram: """ Write data to memory based Mic-1 architecture """ - addr=self.c["MAR"]*4 # Don't forget MAR address 32bits block of memory - if addr>self.lastAddr: + addr=self.c["MAR"] + 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)) #### Split bytes and write #### self.data[addr+3]=self.c["MDR"] & 0xFF @@ -48,13 +48,13 @@ class Ram: """ Read data from memory based Mic-1 architecture """ - addr=self.c["MAR"]*4 # Don't forget MAR address 32bits block of memory + addr=self.c["MAR"] value=None try: #### Combine bytes #### value=self.data[addr]<<24|(self.data[addr+1]<<16)|(self.data[addr+2]<<8)|(self.data[addr+3]) except: - if addr>self.lastAddr: + 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) @@ -75,9 +75,15 @@ class Ram: return(0) return(value) - def dump(self): + def getData(self): """ - Fetch RAM data (usefull for unit tests) + Get RAM data (usefull for unit tests) """ return(self.data) + + def setData(self,data): + """ + Set RAM data (usefull for unit tests) + """ + self.data=data |
