TomNisbet / asm85

Intel 8085 Assembler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Badly-formed strings are silently ignored

TomNisbet opened this issue · comments

An extra quote can cause a part of a string argument to be silently ignored, possibly masking a problem, For example,

LABEL:  db    "abc"", "def"

assembles to the equivalent of:

LABEL:  db    "abc"

instead of:

LABEL:  db    "abc", "def"