Updated paths and added .gitignore

This commit is contained in:
Dreaded_X 2021-01-14 04:00:35 +01:00
parent 23239281cd
commit 0c6c7474e0
2 changed files with 8 additions and 8 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
disk.img

View File

@ -105,18 +105,17 @@ def main():
# @todo Load the config from a file that we specify instead of hardcoding everything
# We can probably keep the os part hardcoded as that is not something we really need to change between different projects
global out
out = open('../tools/disk.img', 'wb')
out = open('disk.img', 'wb')
addBootloader('../cpm/.build/loader.bin')
addOS('../cpm/.build/cpm22.bin', '../cpm/.build/bios.bin')
addBootloader('../../software/loader/.build/loader.bin')
addOS('../../software/cpm/.build/cpm22.bin', '../../software/cpm/.build/bios.bin')
initDirs()
addFile("../cpm/.build/MONITOR.COM", "MONITOR", "COM")
addFile("../cpm/bin/STAT.COM", "STAT", "COM")
addFile("../cpm/bin/MBASIC.COM", "MBASIC", "COM")
addFile("../cpm/bin/s.com", "S", "COM")
# addFile("../xed/.build/XED.COM", "XED", "COM")
addFile("../../software/monitor/.build/MONITOR.COM", "MONITOR", "COM")
addFile("../../software/tetris/.build/tetris.com", "TETRIS", "COM")
addFile("bin/STAT.COM", "STAT", "COM")
addFile("bin/MBASIC.COM", "MBASIC", "COM")
if __name__ == "__main__":
main()