refactor: move directories around 1/2

This commit is contained in:
Dobin
2024-03-29 18:02:16 +00:00
parent 0296537ec5
commit a6dbbe69ac
14 changed files with 103 additions and 180 deletions
+9
View File
@@ -27,3 +27,12 @@ class Settings():
self.generate_asm_from_c: bool = True
self.generate_shc_from_asm: bool = True
def prep(self):
self.main_dir = "data/source/carrier/" + self.source_style.value + "/"
self.template_path = self.main_dir + "template.c"
self.main_c_path = self.main_dir + "main.c"
self.main_asm_path = self.main_dir + "main.asm"
self.main_exe_path = self.main_dir + "main.exe"
self.main_shc_path = self.main_dir + "main.bin"