dos33fsprogs/music/dya
Vince Weaver 3537900858 music: update all the makefiles in the music directory 2021-01-05 18:24:09 -05:00
..
DOTD1.KRW re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
DOTD2.KRW re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
Makefile music: update all the makefiles in the music directory 2021-01-05 18:24:09 -05:00
README music: update all the makefiles in the music directory 2021-01-05 18:24:09 -05:00
apple2_800.inc music: update all the makefiles in the music directory 2021-01-05 18:24:09 -05:00
chip_title_uncompressed.inc re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
chiptune_dya.dsk re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
chiptune_empty.dsk re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
chiptune_player.s music: update all the makefiles in the music directory 2021-01-05 18:24:09 -05:00
dance of the dead Turbosound module 1.pt3 re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
dance of the dead Turbosound module 1.ym re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
dance of the dead Turbosound module 2.pt3 re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
dance of the dead Turbosound module 2.ym re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
gr_setpage.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
hello.bas re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
interrupt_handler.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
lz4_decode.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
mockingboard_a.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
qkumba_rts.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
rasterbars.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
song_list.inc re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
text_print.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
volume_bars.s re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
zp.inc re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00

README

Horrible hack of the VMW chiptune player code to try to play a 6-channel file.

There's really not enough RAM to do things this way.

Proper solution is to write a real pt3 tracker.



Hacks:
	Needs 10k+10k RAM for each KRW file (converted PT3)
	Needs 14k+14k for buffers
	Needs 4k for player
	==================
		52k RAM, more than we have on stock Apple II

	We cheat and use language card which gives up 64k in theory.

	The problem is we use interrupts, and the interrupt routine is
	hard-coded to jump into the $F000 range.  IIe/IIc might
	be smart enough to handle this, but older machines are not.

	so be sure to have your emulator in iie-enhanced mode (not just iie)

	Hack: copy the FXXX range into the language card so it doesn't
	matter?