Print space between show registers

This commit is contained in:
Lukáš Plevač 2023-11-28 13:15:03 +01:00
parent 94f60c86d1
commit 06027bf7bd

View File

@ -30,6 +30,7 @@ regs = []
for data in asm.getData():
regs.append(Register(data))
regs[-1].asciiShow(spaceing = args.spaceing)
print("")
iId = 0
@ -55,6 +56,7 @@ for ins in asm.getInstructions():
if args.verbose:
reg.asciiShow(spaceing = args.spaceing)
print("")
iId += 1
@ -66,6 +68,7 @@ print("")
for reg in regs:
reg.asciiShow(spaceing = args.spaceing)
print("")
if args.decode:
# todo: implement it