Comments out debugging print statements

This commit is contained in:
Kenix3 2021-03-09 18:12:15 -05:00
parent 1f7ad229c5
commit daca195583
1 changed files with 28 additions and 28 deletions

View File

@ -169,34 +169,34 @@ masks = int(src / bytes_per_mask)
rupees = int((src % bytes_per_mask) / bytes_per_rupee) rupees = int((src % bytes_per_mask) / bytes_per_rupee)
# Debug print statements for the values # Debug print statements for the values
print("Total: ", total) #print("Total: ", total)
print("src: ", src) #print("src: ", src)
print("asm: ", asm) #print("asm: ", asm)
print("") #print("")
print("src_code: ", src_code) #print("src_code: ", src_code)
print("src_boot: ", src_boot) #print("src_boot: ", src_boot)
print("src_ovl: ", src_ovl) #print("src_ovl: ", src_ovl)
print("") #print("")
print("asm_code: ", asm_code) #print("asm_code: ", asm_code)
print("asm_boot: ", asm_boot) #print("asm_boot: ", asm_boot)
print("asm_ovl: ", asm_ovl) #print("asm_ovl: ", asm_ovl)
print("") #print("")
print("Nonmatching code: ", non_matching_asm_code) #print("Nonmatching code: ", non_matching_asm_code)
print("Nonmatching boot: ", non_matching_asm_boot) #print("Nonmatching boot: ", non_matching_asm_boot)
print("Nonmatching ovl: ", non_matching_asm_ovl) #print("Nonmatching ovl: ", non_matching_asm_ovl)
print("") #print("")
print("Not attempted code: ", not_attempted_asm_code) #print("Not attempted code: ", not_attempted_asm_code)
print("Not attempted boot: ", not_attempted_asm_boot) #print("Not attempted boot: ", not_attempted_asm_boot)
print("Not attempted ovl: ", not_attempted_asm_ovl) #print("Not attempted ovl: ", not_attempted_asm_ovl)
print("") #print("")
print("code_size: ", code_size) #print("code_size: ", code_size)
print("boot_size: ", boot_size) #print("boot_size: ", boot_size)
print("ovl_size: ", ovl_size) #print("ovl_size: ", ovl_size)
print("") #print("")
print("code: ", code) #print("code: ", code)
print("boot: ", boot) #print("boot: ", boot)
print("ovl: ", ovl) #print("ovl: ", ovl)
print("") #print("")
if args.format == 'csv': if args.format == 'csv':
version = 1 version = 1