Semi-colons in quoted text are seen as comments
Brought to you by:
jacotton
Seems that if there is a semi-colon inside of a string or quoted character, it will interpret the semi-colon as the beginning of a comment instead of a character in the string.
mov a, ':' mov a, ';'
The first line will have no issue, the second line will generate a "missing quote" error message. I believe this error message can come from a few places (dalep, proc_db, proc_dw?) but I believe the source of the issue is the loop at line 1052 in main.c. Not too sure what the best solution is due to my lack of knowledge of the code, but thought it would be of interest to you. Keep up the awesome work on the project!
Thanks for the catch. I'll have a go at it.