pragma variant for GLOBAL_ASM (#49)

* pragma GLOBAL_ASM

* Revert split_asm.py arg description change
This commit is contained in:
Tharo
2021-02-23 23:15:58 -05:00
committed by GitHub
parent e0164dba14
commit c55e9eeee5
564 changed files with 12305 additions and 12305 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ if __name__ == "__main__":
for file in src_files[section]:
file_lines = read_all_lines(file)
for line in file_lines:
if line.startswith('GLOBAL_ASM'):
if line.startswith('#pragma GLOBAL_ASM'):
line_split = list(filter(None, line.split('\"')))
asm_lines = read_all_lines(line_split[1])
for asm_line in asm_lines: