Starting to finalize v0.0.1

This commit is contained in:
Luxferre
2022-08-17 16:22:58 +03:00
parent df01a57c03
commit efb6b7a3d6
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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=... ...] cc -std=c89 -Os -o equi equi.c [-DSTACK_SIZE=... ...]
strip equi
``` ```
### Building with TCC (TinyCC, Tiny C Compiler): `make tcc` ### Building with TCC (TinyCC, Tiny C Compiler): `make tcc`
+1 -1
View File
@@ -775,7 +775,7 @@ int main(int argc, char* argv[]) {
ram.II = 1; ram.II = 1;
} else if(instr == INS_IIEND) { /* process II end */ } else if(instr == INS_IIEND) { /* process II end */
if(!smode) if(!smode)
cputc(instr); /* echo it if not in silent mode */ cputc(instr); /* echo it if not in silent mode */
ram.II = 0; ram.II = 0;
} else if(!ram.II && instr == INS_QUIT) { } else if(!ram.II && instr == INS_QUIT) {
if(ram.MM) { /* output command buffer contents to stdout and exit */ if(ram.MM) { /* output command buffer contents to stdout and exit */