equi

A self-descriptive stack-based PC platform
git clone git://git.luxferre.top/equi.git
Log | Files | Refs | README | LICENSE

commit 107164acac10836f1b9dfaeacf8d0c6f13333c59
parent 8a17ea5edf0da46db4e8c102f7b350a934d0cc98
Author: Luxferre <lux@ferre>
Date:   Mon, 19 Sep 2022 22:37:25 +0300

another typofix

Diffstat:
Mequi.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/equi.c b/equi.c @@ -334,7 +334,7 @@ uchar a2d(uchar a) { return (a < 0x3aU) ? (a - 0x30U) : (a - 55U); } -/* shape 2-byte vlaue on the main stack from up to 4 values of the literal stack */ +/* shape 2-byte value on the main stack from up to 4 values of the literal stack */ void pushLitVal() { uchar p[4U] = {0,0,0,0}, i, thr = 4U; if(curtask->lsp < 4U) thr = curtask->lsp;