equi

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

commit efb6b7a3d6b7993cc3dc342df9a0b7bad40bce74
parent df01a57c03253c37143adaaf81d66e2b44cd7af8
Author: Luxferre <lux@ferre>
Date:   Wed, 17 Aug 2022 16:22:58 +0300

Starting to finalize v0.0.1

Diffstat:
MREADME.md | 1-
Mequi.c | 2+-
2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -164,7 +164,6 @@ Build with default parameters (you can override any of the above constants with ``` cc -std=c89 -Os -o equi equi.c [-DSTACK_SIZE=... ...] -strip equi ``` ### Building with TCC (TinyCC, Tiny C Compiler): `make tcc` diff --git a/equi.c b/equi.c @@ -775,7 +775,7 @@ int main(int argc, char* argv[]) { ram.II = 1; } else if(instr == INS_IIEND) { /* process II end */ if(!smode) - cputc(instr); /* echo it if not in silent mode */ + cputc(instr); /* echo it if not in silent mode */ ram.II = 0; } else if(!ram.II && instr == INS_QUIT) { if(ram.MM) { /* output command buffer contents to stdout and exit */