Split /data/dkr.data.s into smaller rodata .s files

This commit is contained in:
David Benepe
2021-05-28 19:55:59 -05:00
parent 777605a89d
commit aa4466be9e
40 changed files with 5614 additions and 14223 deletions
+5 -1
View File
@@ -1,5 +1,5 @@
from os import chdir, listdir, remove
from os.path import dirname, isfile, isdir, join, realpath
from os.path import dirname, isfile, isdir, join, realpath, exists
class FileUtil:
@staticmethod
@@ -61,3 +61,7 @@ class FileUtil:
@staticmethod
def set_working_dir_to_project_base():
chdir(join(dirname(realpath(__file__)), '../..'))
@staticmethod
def does_file_exist(filename):
return exists(filename)