pt3: add some music

This commit is contained in:
Vince Weaver 2019-05-16 19:49:26 -04:00
parent 9ac00a7621
commit 231dde20a7
18 changed files with 32 additions and 9 deletions

View File

@ -12,10 +12,22 @@ pt3_player.dsk: PT3_PLAYER HELLO
cp empty.dsk pt3_player.dsk
$(DOS33) -y pt3_player.dsk SAVE A HELLO
$(DOS33) -y pt3_player.dsk BSAVE -a 0x1000 PT3_PLAYER
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 EA.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 VC.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 SR.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 OS.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/SR.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/EA.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/VC.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/OS.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/BA.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/CR.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/DF.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/F4.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/FC.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/HI.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/I2.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/IT.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/MB.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/RI.PT3
$(DOS33) -y pt3_player.dsk BSAVE -a 0x4000 ./music/SD.PT3
pt3_debug.dsk: PT3_PLAYER PT3_DUMPER PT3_TIMER HELLO_DEBUG DUMP
cp empty.dsk pt3_debug.dsk
@ -24,10 +36,10 @@ pt3_debug.dsk: PT3_PLAYER PT3_DUMPER PT3_TIMER HELLO_DEBUG DUMP
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x1000 PT3_DUMPER
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x1000 PT3_PLAYER
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x1000 PT3_TIMER
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 EA.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 VC.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 SR.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 OS.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 ./music/EA.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 ./music/VC.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 ./music/SR.PT3
$(DOS33) -y pt3_debug.dsk BSAVE -a 0x4000 ./music/OS.PT3
HELLO: hello.bas
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO

BIN
pt3_player/music/BA.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/CR.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/DF.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/F4.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/FC.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/HI.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/I2.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/IT.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/MB.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/RI.PT3 Normal file

Binary file not shown.

BIN
pt3_player/music/SD.PT3 Normal file

Binary file not shown.

View File

@ -5,7 +5,7 @@
PT3_LOC = $4000
NUM_FILES EQU 4
NUM_FILES EQU 15
;=============================

View File

@ -2,4 +2,15 @@
.asciiz "SR.PT3"
.asciiz "EA.PT3"
.asciiz "VC.PT3"
.asciiz "BA.PT3"
.asciiz "CR.PT3"
.asciiz "DF.PT3"
.asciiz "F4.PT3"
.asciiz "FC.PT3"
.asciiz "HI.PT3"
.asciiz "I2.PT3"
.asciiz "IT.PT3"
.asciiz "MB.PT3"
.asciiz "RI.PT3"
.asciiz "SD.PT3"