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
|
||||
# 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()
|
||||
|
|
Reference in New Issue
Block a user