From 62d1c8b3c949d06247bf8d8db5632664ce7b26e6 Mon Sep 17 00:00:00 2001 From: Kroc Camen Date: Mon, 1 Jul 2024 14:01:56 +0100 Subject: [PATCH] v0.1.3 --- README.md | 6 ++++++ wla/cpm.wla | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 215138a..d868611 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,12 @@ _v80_ is assembled as a generic CP/M binary that should run on any Z80-based, CP ## Change History +### 2024/7/1: v0.1.3 + +In a spectacular case of not seeing the woods for the trees, the expression parser wasn't evaluating anything more than a single operator and ignoring the rest of the expression. Unary operators were also not working due to expected registers changing at some point. + +v80 now assembles itself byte-for-byte compared to the WLA-DX version meaning there should be no more surprise bug-fix releases, and a v80 version of v80 will be coming with v1.0! + ### 2024/7/1: v0.1.2 - Square brackets allowed as alternatives to parenthesis diff --git a/wla/cpm.wla b/wla/cpm.wla index b0516b4..0d2bccb 100644 --- a/wla/cpm.wla +++ b/wla/cpm.wla @@ -150,7 +150,7 @@ osBoot: jp main ; we will not return from here! ;----------------------------------------------------------------------- -@banner .BYTE CHAR_COMMENT, " v80 CP/M v0.1.2 - github.com/kroc/v80\r\n" +@banner .BYTE CHAR_COMMENT, " v80 CP/M v0.1.3 - github.com/kroc/v80\r\n" .BYTE CHAR_COMMENT, " (C) Kroc Camen 2023-2024, MIT License", 0 ;=======================================================================