yuv422 / z80editor

Z80 eclipse editor targeting WLA-DX assembler
GNU General Public License v2.0
9 stars 1 forks source link

EX AF,AF' expecting RULE_REGISTER_AF_SHADOW #1

Open stefandrissen opened 8 years ago

stefandrissen commented 8 years ago

Hi!

Just giving a quick spin with my Z80 sources (Comet Assembler) for the SAM Coupé. While trying to get rid of all of the errors due to syntax differences (defb -> .db, org -> .org, &FF -> $FF, equ -> .define) I ran into one interesting minor issue:

EX AF,AF' throws:

Multiple markers at this line

When using lower case for the shadow register, everything is fine:

ex af,af' is fine as is EX AF,af'

Thanks!