mirror of https://github.com/zeldaret/mm.git
Comments out debugging print statements
This commit is contained in:
parent
1f7ad229c5
commit
daca195583
|
|
@ -169,34 +169,34 @@ masks = int(src / bytes_per_mask)
|
|||
rupees = int((src % bytes_per_mask) / bytes_per_rupee)
|
||||
|
||||
# Debug print statements for the values
|
||||
print("Total: ", total)
|
||||
print("src: ", src)
|
||||
print("asm: ", asm)
|
||||
print("")
|
||||
print("src_code: ", src_code)
|
||||
print("src_boot: ", src_boot)
|
||||
print("src_ovl: ", src_ovl)
|
||||
print("")
|
||||
print("asm_code: ", asm_code)
|
||||
print("asm_boot: ", asm_boot)
|
||||
print("asm_ovl: ", asm_ovl)
|
||||
print("")
|
||||
print("Nonmatching code: ", non_matching_asm_code)
|
||||
print("Nonmatching boot: ", non_matching_asm_boot)
|
||||
print("Nonmatching ovl: ", non_matching_asm_ovl)
|
||||
print("")
|
||||
print("Not attempted code: ", not_attempted_asm_code)
|
||||
print("Not attempted boot: ", not_attempted_asm_boot)
|
||||
print("Not attempted ovl: ", not_attempted_asm_ovl)
|
||||
print("")
|
||||
print("code_size: ", code_size)
|
||||
print("boot_size: ", boot_size)
|
||||
print("ovl_size: ", ovl_size)
|
||||
print("")
|
||||
print("code: ", code)
|
||||
print("boot: ", boot)
|
||||
print("ovl: ", ovl)
|
||||
print("")
|
||||
#print("Total: ", total)
|
||||
#print("src: ", src)
|
||||
#print("asm: ", asm)
|
||||
#print("")
|
||||
#print("src_code: ", src_code)
|
||||
#print("src_boot: ", src_boot)
|
||||
#print("src_ovl: ", src_ovl)
|
||||
#print("")
|
||||
#print("asm_code: ", asm_code)
|
||||
#print("asm_boot: ", asm_boot)
|
||||
#print("asm_ovl: ", asm_ovl)
|
||||
#print("")
|
||||
#print("Nonmatching code: ", non_matching_asm_code)
|
||||
#print("Nonmatching boot: ", non_matching_asm_boot)
|
||||
#print("Nonmatching ovl: ", non_matching_asm_ovl)
|
||||
#print("")
|
||||
#print("Not attempted code: ", not_attempted_asm_code)
|
||||
#print("Not attempted boot: ", not_attempted_asm_boot)
|
||||
#print("Not attempted ovl: ", not_attempted_asm_ovl)
|
||||
#print("")
|
||||
#print("code_size: ", code_size)
|
||||
#print("boot_size: ", boot_size)
|
||||
#print("ovl_size: ", ovl_size)
|
||||
#print("")
|
||||
#print("code: ", code)
|
||||
#print("boot: ", boot)
|
||||
#print("ovl: ", ovl)
|
||||
#print("")
|
||||
|
||||
if args.format == 'csv':
|
||||
version = 1
|
||||
|
|
|
|||
Loading…
Reference in New Issue