Removed unnecessary printing from extract_arch_vectors

This commit is contained in:
David Harris 2024-05-06 06:28:15 -07:00
parent 36b80ac2b2
commit 025e65ce1a

View File

@ -194,7 +194,7 @@ def create_vectors(my_config):
# get answer from Ref...signature # get answer from Ref...signature
# answers span two lines and are reversed # answers span two lines and are reversed
answer = src_file2.readline().strip() answer = src_file2.readline().strip()
print(f"Answer: {answer}") # print(f"Answer: {answer}")
#print(answer1,answer2) #print(answer1,answer2)
if not (answer == "6f5ca309"): # if there is still stuff to read if not (answer == "6f5ca309"): # if there is still stuff to read
# parse through .S file # parse through .S file
@ -239,9 +239,9 @@ def create_vectors(my_config):
while reading: while reading:
# get answer and flags from Ref...signature # get answer and flags from Ref...signature
answer = src_file2.readline() answer = src_file2.readline()
print(answer) #print(answer)
packed = src_file2.readline()[6:] packed = src_file2.readline()[6:]
print("Packed: ", packed) #print("Packed: ", packed)
if len(packed.strip())>0: # if there is still stuff to read if len(packed.strip())>0: # if there is still stuff to read
# print("packed") # print("packed")
# parse through .S file # parse through .S file