Updated to use .gitignore and include template; needed to tweak 'go' build script.

This commit is contained in:
Rob Greene 2015-09-19 15:34:34 -05:00
parent 4a8fe1df78
commit fb6839097a
3 changed files with 15 additions and 2 deletions

13
.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
# Ignore assembly listings
*.lst
# Ignore object files
*.o
# Ignore assembled code
*.bin
# Ignore output disk images except for the template:
*.po
!template.po

4
go
View File

@ -1,4 +1,4 @@
ca65 main.asm -t none -l $*
cl65 main.asm -t none --start-addr 0x2000 --listing
cl65 main.asm -o main.bin -t none --start-addr 0x2000 --listing
cp template.po mydisk.po
java -jar /Applications/AppleCommander.app/Contents/Resources/Java/AppleCommander.jar -p mydisk.po cd.online BIN 0x2000 < main
java -jar /Applications/AppleCommander.app/Contents/Resources/Java/AppleCommander.jar -p mydisk.po cd.online BIN 0x2000 < main.bin

BIN
template.po Normal file

Binary file not shown.