I added another check, flexo pseudo-instruction is broken for mixed-case characters.
Why? Concise code uses shift characters. If you do something like flex Abc, what you get is 'upper A lower'. Any mixed case use isn't likely to do what you expected.
Any all-upper use might, but only if you do flexo A or flexo AB, to leave room for the shift character.
Interestingly, the char pseudo-instruction does handle this by not allowing shifted characters, not totally useful but at least safe.
Repo updated.
Bill