Skip to content

Commit

Permalink
Merge pull request #14 from xlar54/Add_phonebook_modify_and_save
Browse files Browse the repository at this point in the history
#13 Add/remove elements to Phonebook and save/reload on disk
  • Loading branch information
sblendorio authored Jan 25, 2019
2 parents 81369a7 + 2651896 commit b7158ae
Show file tree
Hide file tree
Showing 8 changed files with 306 additions and 152 deletions.
36 changes: 16 additions & 20 deletions build.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@echo off
del /S/Q target
md target

Expand All @@ -18,26 +19,21 @@ del *.inf

cd ..\target

c1541 -format "ultimatedemos,sh" d64 ultimatedemos.d64
c1541 -format "ultimate-term,sh" d64 ultimate-term.d64

c1541 -attach ultimatedemos.d64 -write ..\src\term-loader.prg term-loader
c1541 -attach ultimatedemos.d64 -write u-shell.prg u-shell
c1541 -attach ultimatedemos.d64 -write u-term64.prg u-term64
c1541 -attach ultimatedemos.d64 -write u-term128.prg u-term128
c1541 -attach ultimatedemos.d64 -write u-term.seq u-term,s
c1541 -attach ultimatedemos.d64 -write u-chat64.prg u-chat64
c1541 -attach ultimatedemos.d64 -write u-chat128.prg u-chat128
c1541 -attach ultimatedemos.d64 -geoswrite geouterm.cvt
c1541 -attach ultimatedemos.d64 -geoswrite ..\src\cbm40.cvt
c1541 -attach ultimatedemos.d64 -geoswrite ..\src\cbm80.cvt

c1541 -attach ultimate-term.d64 -write ..\src\term-loader.prg term-loader
c1541 -attach ultimate-term.d64 -write u-term64.prg u-term64
c1541 -attach ultimate-term.d64 -write u-term128.prg u-term128
c1541 -attach ultimate-term.d64 -write u-term.seq u-term,s

del u-term.seq
c1541 -format "ultimatedemos,sh" d64 UltimateTerm-and-demos.d64

c1541 -attach UltimateTerm-and-demos.d64 -write ..\src\term-loader.prg term-loader
c1541 -attach UltimateTerm-and-demos.d64 -write u-term64.prg u-term64
c1541 -attach UltimateTerm-and-demos.d64 -write u-term128.prg u-term128
c1541 -attach UltimateTerm-and-demos.d64 -write u-shell.prg u-shell
c1541 -attach UltimateTerm-and-demos.d64 -write u-chat64.prg u-chat64
c1541 -attach UltimateTerm-and-demos.d64 -write u-chat128.prg u-chat128
c1541 -attach UltimateTerm-and-demos.d64 -geoswrite geouterm.cvt
c1541 -attach UltimateTerm-and-demos.d64 -geoswrite ..\src\cbm40.cvt
c1541 -attach UltimateTerm-and-demos.d64 -geoswrite ..\src\cbm80.cvt
c1541 -attach UltimateTerm-and-demos.d64 -write u-term.seq u-term,s

del /Q u-term.seq
del /Q geouterm.cvt

cd ..

34 changes: 14 additions & 20 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,19 @@ rm -f *.inf

cd ../target

c1541 -format "ultimatedemos,sh" d64 ultimatedemos.d64
c1541 -format "ultimate-term,sh" d64 ultimate-term.d64

c1541 -attach ultimatedemos.d64 -write ../src/term-loader.prg term-loader
c1541 -attach ultimatedemos.d64 -write u-term64.prg u-term64
c1541 -attach ultimatedemos.d64 -write u-term128.prg u-term128
c1541 -attach ultimatedemos.d64 -write u-term.seq u-term,s
c1541 -attach ultimatedemos.d64 -write u-shell.prg u-shell
c1541 -attach ultimatedemos.d64 -write u-chat64.prg u-chat64
c1541 -attach ultimatedemos.d64 -write u-chat128.prg u-chat128
c1541 -attach ultimatedemos.d64 -geoswrite ../src/cbm40.cvt
c1541 -attach ultimatedemos.d64 -geoswrite ../src/cbm80.cvt
c1541 -attach ultimatedemos.d64 -geoswrite geouterm.cvt

c1541 -attach ultimate-term.d64 -write ../src/term-loader.prg term-loader
c1541 -attach ultimate-term.d64 -write u-term64.prg u-term64
c1541 -attach ultimate-term.d64 -write u-term128.prg u-term128
c1541 -attach ultimate-term.d64 -write u-term.seq u-term,s

rm -f u-term.seq
c1541 -format "ultimatedemos,sh" d64 UltimateTerm-and-demos.d64

c1541 -attach UltimateTerm-and-demos.d64 -write ../src/term-loader.prg term-loader
c1541 -attach UltimateTerm-and-demos.d64 -write u-term64.prg u-term64
c1541 -attach UltimateTerm-and-demos.d64 -write u-term128.prg u-term128
c1541 -attach UltimateTerm-and-demos.d64 -write u-shell.prg u-shell
c1541 -attach UltimateTerm-and-demos.d64 -write u-chat64.prg u-chat64
c1541 -attach UltimateTerm-and-demos.d64 -write u-chat128.prg u-chat128
c1541 -attach UltimateTerm-and-demos.d64 -geoswrite geouterm.cvt
c1541 -attach UltimateTerm-and-demos.d64 -geoswrite ../src/cbm40.cvt
c1541 -attach UltimateTerm-and-demos.d64 -geoswrite ../src/cbm80.cvt
c1541 -attach UltimateTerm-and-demos.d64 -write u-term.seq u-term,s

rm -f u-term.seq geouterm.cvt

cd ..
Loading

0 comments on commit b7158ae

Please sign in to comment.