@andrivet/z80-assembler 1.1.0 → 1.2.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 +18 -0
- package/index.js +1 -1
- package/index.mjs +474 -380
- package/lib/compiler/Ast.d.ts +12 -2
- package/lib/compiler/Compiler.d.ts +1 -1
- package/lib/compiler/Formatter.d.ts +1 -1
- package/lib/compiler/Labels.d.ts +19 -2
- package/lib/grammar/LowLevel.d.ts +38 -10
- package/lib/grammar/Parse.d.ts +21 -1
- package/lib/grammar/z80.d.ts +208 -208
- package/lib/types/Error.d.ts +26 -6
- package/lib/types/Types.d.ts +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.2.0 - June 20, 2023
|
|
4
|
+
|
|
5
|
+
* Solve issue with expression starting with an open parenthesis
|
|
6
|
+
* More comment (english and french)
|
|
7
|
+
|
|
8
|
+
## 1.1.0 - June 13, 2023
|
|
9
|
+
|
|
10
|
+
* Add special handling of ZX81 device
|
|
11
|
+
* Only allow ZX81 string (ASCII string do not make sense)
|
|
12
|
+
* Publication on GitHub Pages using GitHub Actions
|
|
13
|
+
|
|
14
|
+
## 1.0.0 - June 5, 2023
|
|
15
|
+
|
|
16
|
+
* First public version
|
|
17
|
+
|
|
18
|
+
|