chiptune: change name of disk to be chiptune

This commit is contained in:
Vince Weaver 2018-02-17 12:43:21 -05:00
parent 67cf2d7b4b
commit ca9d825f9e
3 changed files with 11 additions and 6 deletions

View File

@ -3,11 +3,11 @@ include ../Makefile.inc
DOS33 = ../dos33fs-utils/dos33
PNG2GR = ../gr-utils/png2gr
all: mock_player.dsk
all: chiptune_player.dsk
mock_player.dsk: CHIPTUNE_PLAYER OUT.0
$(DOS33) -y mock_player.dsk BSAVE -a 0x1000 CHIPTUNE_PLAYER
$(DOS33) -y mock_player.dsk BSAVE -a 0x4000 OUT.0
chiptune_player.dsk: CHIPTUNE_PLAYER OUT.0
$(DOS33) -y chiptune_player.dsk BSAVE -a 0x1000 CHIPTUNE_PLAYER
$(DOS33) -y chiptune_player.dsk BSAVE -a 0x4000 OUT.0
CHIPTUNE_PLAYER: chiptune_player.o

View File

@ -1,17 +1,22 @@
For example, intro2.ym5
raw: 125440 bytes
lzss: 44154 bytes
lz4: 21377 bytes (14685 -9)
gzip: 17119 bytes
lz4: 14666 bytes (-16) (14685 -9, 21377 default)
bzip2: 12685 bytes
lzma (xz) 5312 bytes
Split up, Interleaved, LZ4
lz4,1024*14 chunks 7971 bytes (-16) (14k output buffer)
lz4,768*14 chunks 9474 bytes (-16) (10.5k output buffer)
Interleaved (all of r0 in a row, then all of r1, etc).
lz4/interleaved: 8914 bytes (3209 -9) (3190 -16)
lzss/interleaved: 7981 bytes
lha/interleaved: 3217 bytes <=== default used by ym5 format
lz4/interleaved: 3190 bytes (-16) (8914 default, 3209 -9)
bzip2/interleaved 3017 bytes
gzip/interleaved: 2759 bytes
lzma/interleaved: 2129 bytes