-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial support for asMSX dialect, fixed many bugs concerning macros,…
… added support for pragma directives in comments to prevent optimizations
- Loading branch information
1 parent
45d985c
commit 31f2815
Showing
21 changed files
with
697 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
; Test case: making sure pre-processor parses code correctly (this case didn't work in an early version) | ||
|
||
|
||
IFDEF symbol | ||
ld b,1 | ||
ld c,2 | ||
ELSE | ||
ld b,3 | ||
ld c,4 | ||
ENDIF | ||
ld (symbol),bc | ||
|
||
end: | ||
jp end | ||
|
||
symbol: | ||
dw 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
; Test case: check code annotations work | ||
|
||
|
||
IFDEF symbol | ||
ld b,1 ; mdl:no-opt | ||
ld c,2 | ||
ELSE | ||
ld b,3 | ||
ld c,4 | ||
ENDIF | ||
ld (symbol),bc | ||
|
||
end: | ||
jp end | ||
|
||
symbol: | ||
dw 0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.