Updated paths and added .gitignore
This commit is contained in:
parent
23239281cd
commit
0c6c7474e0
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
disk.img
|
|
@ -105,18 +105,17 @@ def main():
|
||||||
# @todo Load the config from a file that we specify instead of hardcoding everything
|
# @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
|
# We can probably keep the os part hardcoded as that is not something we really need to change between different projects
|
||||||
global out
|
global out
|
||||||
out = open('../tools/disk.img', 'wb')
|
out = open('disk.img', 'wb')
|
||||||
|
|
||||||
addBootloader('../cpm/.build/loader.bin')
|
addBootloader('../../software/loader/.build/loader.bin')
|
||||||
addOS('../cpm/.build/cpm22.bin', '../cpm/.build/bios.bin')
|
addOS('../../software/cpm/.build/cpm22.bin', '../../software/cpm/.build/bios.bin')
|
||||||
|
|
||||||
initDirs()
|
initDirs()
|
||||||
|
|
||||||
addFile("../cpm/.build/MONITOR.COM", "MONITOR", "COM")
|
addFile("../../software/monitor/.build/MONITOR.COM", "MONITOR", "COM")
|
||||||
addFile("../cpm/bin/STAT.COM", "STAT", "COM")
|
addFile("../../software/tetris/.build/tetris.com", "TETRIS", "COM")
|
||||||
addFile("../cpm/bin/MBASIC.COM", "MBASIC", "COM")
|
addFile("bin/STAT.COM", "STAT", "COM")
|
||||||
addFile("../cpm/bin/s.com", "S", "COM")
|
addFile("bin/MBASIC.COM", "MBASIC", "COM")
|
||||||
# addFile("../xed/.build/XED.COM", "XED", "COM")
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
Reference in New Issue
Block a user