From 2d06d095f612fd471f977ee5ad68208c7ecbc90f Mon Sep 17 00:00:00 2001 From: Michael Tolly Date: Mon, 28 Jul 2014 10:44:18 -0500 Subject: [PATCH] v0.5, and updated readme --- README.md | 6 ++---- pokemid.cabal | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 30c1091..ab79b02 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Features: * Changes tempo with MIDI tempo events. * Supports the following note modifiers: `notetype`, `pitchbend`, `vibrato`, - `duty`, `volume`, and `stereopanning`. + `duty`, `volume`, `stereopanning`, and `toggleperfectpitch`. * Finds repeated sections of assembly events and breaks them out into subroutines, called with `callchannel`, to save ROM space. @@ -30,9 +30,6 @@ Future work: * Possibly use `loopchannel` to further shorten the assembly code. - * Better error reporting: errors should have MIDI positions and better - explanations. - ## Usage pokemid in.asm out.mid # assembly to MIDI @@ -55,6 +52,7 @@ For MIDI to assembly, the MIDI file should be in the following format: * `volume , ` * `stereopanning ` * `pitchbend , ` + * `toggleperfectpitch` For documentation on these see the [pokered] project. All of these events affect all notes that come after them, except the diff --git a/pokemid.cabal b/pokemid.cabal index 2f81936..3b5ef86 100644 --- a/pokemid.cabal +++ b/pokemid.cabal @@ -1,5 +1,5 @@ name: pokemid -version: 0.4 +version: 0.5 synopsis: Import\/export Pokémon Red\/Blue music as MIDI homepage: https://github.com/mtolly/pokemid license: PublicDomain