Maybe went overboard with make colours, but it's all colourful now!

This commit is contained in:
Ryan Myers
2021-10-21 22:43:20 -04:00
parent 438426784b
commit fd5535d88f
3 changed files with 29 additions and 18 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ BSS_LIB_ORDER_FILES = [
class GenerateLD:
def __init__(self, file):
print('Generating linker file...')
print('\x1B[32mGenerating linker file: \x1B[0m', end='')
self.assets = GenerateAssets(ROOT_DIR, VERSION)
self.files = self.get_code_files()
self.indentLevel = 0
@@ -47,7 +47,7 @@ class GenerateLD:
self.gen_line('OUTPUT_ARCH (mips)')
self.gen_newline()
self.gen_sections()
print('New linker file created!')
print('\x1B[33m New linker file created!\x1B[0m')
def gen_sections(self):
self.gen_line('SECTIONS')