@andrivet/z80-assembler 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/index.js +12 -12
- package/index.mjs +1608 -1180
- package/lib/compiler/Ast.d.ts +18 -11
- package/lib/compiler/Labels.d.ts +9 -10
- package/lib/grammar/z80.d.ts +784 -508
- package/lib/types/Error.d.ts +6 -8
- package/lib/types/Types.d.ts +9 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.3.0 - June 28, 2023
|
|
4
|
+
|
|
5
|
+
* **1** - Allow (IX) and (IY) without on explicit offset.
|
|
6
|
+
* **2** - Define the pseudo value $ for PC.
|
|
7
|
+
* **3** - Be more specific when an expression can't be evaluated.
|
|
8
|
+
* **5** - Recursive labels are now properly detected (max 20 recursions).
|
|
9
|
+
|
|
3
10
|
## 1.2.0 - June 20, 2023
|
|
4
11
|
|
|
5
12
|
* Solve issue with expression starting with an open parenthesis
|