readme formatting

This commit is contained in:
Charles Mangin 2016-12-27 22:36:21 -05:00
parent 99e24d9a06
commit 974a7b9212
1 changed files with 11 additions and 11 deletions

View File

@ -5,17 +5,17 @@ All the code is in this README, since it's small enough to copy and paste into a
The included DSK file contains the following files:
*KSYNTH*: The core sound generation routine
*KSYNTH.PLAYER*: Basic player routine. Assumes SONG bytes starting at $1000
*BFLATSCALE.SONG*: B-Flat scale
*VICTORY.SONG*: "Victory" tune from Karateka
*DAISYBELL.SONG*: "Bicylce Built for Two" AKA "Daisy Bell"
*DAISYBELL.MIDI*: "Bicylce Built for Two" AKA "Daisy Bell" in MIDI-like format for KSYNTH.MIDI
*KSYNTH.MIDI*: MIDI-style KSYNTH player routine. Looks up notes from MIDI.LOOKUP instead of raw cycle counts.
*MIDI.LOOKUP*: Lookup table of notes to cycle counts for MIDI style player.
*RANDOMNOTES*: A routine to play random tones with the KSYNTH routine.
*MIDI.LOOKUP2*: Alternate MIDI lookup table that covers larger range of tones
*TWOTONE.PLAYER*: Slightly different MIDI-style player. Plays arbitrary two-note combinations.
- *KSYNTH*: The core sound generation routine
- *KSYNTH.PLAYER*: Basic player routine. Assumes SONG bytes starting at $1000
- *BFLATSCALE.SONG*: B-Flat scale
- *VICTORY.SONG*: "Victory" tune from Karateka
- *DAISYBELL.SONG*: "Bicylce Built for Two" AKA "Daisy Bell"
- *DAISYBELL.MIDI*: "Bicylce Built for Two" AKA "Daisy Bell" in MIDI-like format for KSYNTH.MIDI
- *KSYNTH.MIDI*: MIDI-style KSYNTH player routine. Looks up notes from MIDI.LOOKUP instead of raw cycle counts.
- *MIDI.LOOKUP*: Lookup table of notes to cycle counts for MIDI style player.
- *RANDOMNOTES*: A routine to play random tones with the KSYNTH routine.
- *MIDI.LOOKUP2*: Alternate MIDI lookup table that covers larger range of tones
- *TWOTONE.PLAYER*: Slightly different MIDI-style player. Plays arbitrary two-note combinations.
To do: Add more MIDI example songs.