@andrivet/z80-assembler 1.3.0 → 1.3.1
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 -1
- package/index.d.ts +2 -2
- package/index.js +91 -28
- package/index.mjs +1650 -2479
- package/lib/compiler/Assets.d.ts +0 -9
- package/lib/compiler/Ast.d.ts +0 -53
- package/lib/compiler/Compiler.d.ts +0 -25
- package/lib/compiler/Formatter.d.ts +0 -13
- package/lib/compiler/Generator.d.ts +0 -1
- package/lib/compiler/Labels.d.ts +1 -25
- package/lib/grammar/LowLevel.d.ts +0 -37
- package/lib/grammar/Parse.d.ts +0 -29
- package/lib/grammar/z80.d.ts +207 -873
- package/lib/types/Error.d.ts +0 -28
- package/lib/types/Types.d.ts +0 -15
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.3.1 - November 20, 2024
|
|
4
|
+
|
|
5
|
+
* Remove french comments
|
|
6
|
+
* Fix issue #6 Labels are not generated in SLD when alone on a line
|
|
7
|
+
|
|
8
|
+
|
|
3
9
|
## 1.3.0 - June 28, 2023
|
|
4
10
|
|
|
5
|
-
* **1** - Allow (IX) and (IY) without
|
|
11
|
+
* **1** - Allow (IX) and (IY) without an explicit offset.
|
|
6
12
|
* **2** - Define the pseudo value $ for PC.
|
|
7
13
|
* **3** - Be more specific when an expression can't be evaluated.
|
|
8
14
|
* **5** - Recursive labels are now properly detected (max 20 recursions).
|
package/index.d.ts
CHANGED