Skip to content

Commit d7b56b0

Browse files
committed
more informational messages
1 parent c489150 commit d7b56b0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

z80-disassembler.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,12 +1199,12 @@ def findstring(memstart, memend):
11991199
loc = 0
12001200

12011201
# dump_code_array()
1202-
print("Loading template file...",end="")
12031202
if args.templatefile is not None:
1203+
print(f"Loading template file: {args.templatefile}...",end="")
12041204
process_template(args.templatefile)
1205-
print(" Done!",end="")
1206-
if args.quiet:
1207-
print("\n")
1205+
print(" Done!",end="")
1206+
if args.quiet:
1207+
print("\n")
12081208

12091209

12101210
program_counter=min(code)
@@ -1332,12 +1332,12 @@ def findstring(memstart, memend):
13321332
# Print the used external EQUs (with nice formatting)
13331333
# First find the longest label
13341334

1335-
print("Loading labels file... ",end="")
13361335
if args.labelsfile:
1336+
print(f"Loading labels file: {args.labelsfile}... ",end="")
13371337
load_labels(args.labelsfile)
1338-
print("Done!",end="")
1339-
if args.quiet:
1340-
print("\n")
1338+
print("Done!",end="")
1339+
if args.quiet:
1340+
print("\n")
13411341

13421342
maxlen=0
13431343
for loop in extern_labels:

0 commit comments

Comments
 (0)