Debug MBR register

This commit is contained in:
Loic GUEGAN 2018-09-01 16:49:12 +02:00
parent 6ac0692116
commit d58349763a
4 changed files with 21 additions and 20 deletions

View file

@ -11,12 +11,12 @@ class Caretaker:
def __getitem__(self,key): def __getitem__(self,key):
if key=="MBRU": # If we ask for unsigned if key=="MBRU": # If we ask for unsigned
return(self.objects["MBR"] & 0x000000FF) return(abs(self.objects["MBR"]))
elif key=="MBR": # If we ask for signed elif key== "MBR":
if self.objects["MBR"]>=0: if (self.objects[key]>>7)==1: # If it a negative number (2 complement)
return(self["MBRU"]) return(-((self.objects[key]-1)^0xFF)) # transforme bin negative number to python negative number
else: # Send 2 complement if it's lower than 0 else:
return(self.objects["MBR"] & 0xFFFFFFFF) return(self.objects[key])
return(self.objects[key]) return(self.objects[key])
def __setitem__(self,key,value):# TODO: Do special treatment for MBR (allow only 2^8 value) def __setitem__(self,key,value):# TODO: Do special treatment for MBR (allow only 2^8 value)

View file

@ -45,7 +45,7 @@ class Microprogram:
""" """
Execute next opcode Execute next opcode
""" """
opcode=self.c["MBR"] # Get loaded OpCode opcode=self.c["MBRU"] # Get loaded OpCode (/!\ We used MBRU not MBR because MBR is signed)
if opcode==ijvm["NOP"]: # NOP if opcode==ijvm["NOP"]: # NOP
pass pass
elif opcode==ijvm["BIPUSH"]: # BIPUSH elif opcode==ijvm["BIPUSH"]: # BIPUSH
@ -135,16 +135,23 @@ class Microprogram:
self.c["H"]=self.c["MDR"] self.c["H"]=self.c["MDR"]
self.c["MDR"]=self.c["MBR"]+self.c["H"] self.c["MDR"]=self.c["MBR"]+self.c["H"]
self.wr() self.wr()
elif opcode==ijvm["GOTO"]:
self.fetch();self.c["PC"]+=1 # Fetch first byte
self.c["OPC"]=self.c["PC"]-1
self.c["H"]=self.c["MBR"]<<8
self.fetch();self.c["PC"]+=1 # Fetch second byte
self.c["H"]=self.c["MBRU"]|self.c["H"]
self.c["PC"]=self.c["OPC"]+self.c["H"]
elif opcode==ijvm["OUT"]: elif opcode==ijvm["OUT"]:
self.fetch();self.c["PC"]+=1 # Fetch byte to push in MBR self.fetch();self.c["PC"]+=1 # Fetch byte to push in MBR
print(str(chr(self.c["MBR"])),end="") print(str(chr(self.c["MBRU"])),end="") # MBRU because no char which are negative
elif opcode==ijvm["HALT"]: elif opcode==ijvm["HALT"]:
return(1) return(1)
else: else:
if opcode in ijvm: if opcode in ijvm:
print("Instruction {} not yet implemented.".format(ijvm[opcode])) print("Instruction {} not yet implemented.".format(ijvm[opcode]))
else: else:
raise RuntimeError("Instruction {} not found".format(opcode)) raise RuntimeError("Instruction {} not found on address {}".format(opcode,self.c["PC"]-1))
return(0) return(0)
def dump(self): def dump(self):

View file

@ -13,4 +13,3 @@ c["RAM"]=RAM # Add ram to components
mic=Microprogram(c) # Create micro program mic=Microprogram(c) # Create micro program
mic.run() # Run the micro program mic.run() # Run the micro program
mic.dump() # Dump ram mic.dump() # Dump ram

15
ram.txt
View file

@ -1,14 +1,9 @@
BIPUSH BIPUSH
4 1
BIPUSH BIPUSH
5 0
ILOAD GOTO
0
0 0
BIPUSH BIPUSH
2 3
IADD
ISTORE
1
IINC
1
10