amended description of 0.98 dialect
The reason for the "number does not fit" error is this: "!$c0" evaluates to 0xffffff3f (on a 32-bit system) or 0xffffffffffffff3f (on a 64-bit system). So in a case like this, you could use 255 - $c0 or $c0 XOR $ff instead to flip all bits.
fixed confusing "no string given" error message, now there are separate
added a comment on where to fix a bug
Re-assembling alternate code after error
Once version 0.98 is released, it should be possible to do stuff like this using macro magic. ...and for CPUs that have "long" branches (like 65ce02), choosing the correct length could be done automatically. Version 0.98 will be out RealSoonNow (tm).
added "!break", "!continue" and "!return" (for loops and macros, respectively)
moved test files around