remove commented code in assembler

This commit is contained in:
Arthur Lu 2022-08-10 05:45:28 +00:00
parent 5d8ea74edc
commit 1a44a5be80

View File

@ -133,6 +133,4 @@ for file in targets:
for inst in tqdm(instructions, desc='Assembly', unit=' instructions'):
opcode = op_codes[inst[0]]
operand = inst[1]
#print(str(opcode) + " " + str(operand))
#print(str(opcode | operand))
out.write((opcode| operand).to_bytes(length=2, byteorder='big'))