summaryrefslogtreecommitdiff
path: root/src/semantic_token.rs
Commit message (Collapse)AuthorAge
* Report preceding label name on assembly errorBen Bridle2023-12-19
| | | | | | | | | | | | When the assembler encounters an error, the erroneous line and the line number are output in order to help the user to find where in the input file the error occurred. This is useful for single-file inputs, but the line number is generally not helpful if the input file was generated by concatenating multiple files. In order to help the user to determine where in the program source the error occurred, the assembler now reports the name of the label which directly precedes the erroneous line.
* Exit with status 1 on assembly errorBen Bridle2023-11-26
| | | | | This will break unix pipelines in order to prevent any emulator down the pipeline from attempting to run a malassembled program.
* Added detection of cyclic macro references, and made assembler binary usableBen Bridle2023-05-08
|
* About to refactor parser to be a struct with a method for each stageBen Bridle2023-05-06