fix label generator

Recently the bank lines were changed to use lowercase characters,
breaking the generator for "labels.json".
This commit is contained in:
Bryan Bishop 2013-01-23 18:32:23 -06:00
parent d510b00a8f
commit a826951adb
1 changed files with 2 additions and 2 deletions

View File

@ -7762,9 +7762,9 @@ def scan_for_predefined_labels(debug=False):
abbreviation_next = "1" abbreviation_next = "1"
# calculate the start/stop line numbers for this bank # calculate the start/stop line numbers for this bank
start_line_id = index(asm, lambda line: "\"bank" + abbreviation + "\"" in line) start_line_id = index(asm, lambda line: "\"bank" + abbreviation.lower() + "\"" in line.lower())
if bank_id != 0x7F: if bank_id != 0x7F:
end_line_id = index(asm, lambda line: "\"bank" + abbreviation_next + "\"" in line) end_line_id = index(asm, lambda line: "\"bank" + abbreviation_next.lower() + "\"" in line.lower())
end_line_id += 1 end_line_id += 1
else: else:
end_line_id = len(asm) - 1 end_line_id = len(asm) - 1