remove commented code in assembler
This commit is contained in:
parent
5d8ea74edc
commit
1a44a5be80
@ -133,6 +133,4 @@ for file in targets:
|
|||||||
for inst in tqdm(instructions, desc='Assembly', unit=' instructions'):
|
for inst in tqdm(instructions, desc='Assembly', unit=' instructions'):
|
||||||
opcode = op_codes[inst[0]]
|
opcode = op_codes[inst[0]]
|
||||||
operand = inst[1]
|
operand = inst[1]
|
||||||
#print(str(opcode) + " " + str(operand))
|
|
||||||
#print(str(opcode | operand))
|
|
||||||
out.write((opcode| operand).to_bytes(length=2, byteorder='big'))
|
out.write((opcode| operand).to_bytes(length=2, byteorder='big'))
|
||||||
|
Reference in New Issue
Block a user