shithub: MicroHs

Download patch

ref: f63e6ed90adf61b213ff5ffe3ef5bf16560cdf2f
parent: 14be7bff7656333ad3ac1e3a5fe927573988c311
author: Lennart Augustsson <lennart@augustsson.net>
date: Sun Nov 5 11:46:58 EST 2023

Make permanent INT nodes for all byte values.

--- a/src/runtime/eval.c
+++ b/src/runtime/eval.c
@@ -140,7 +140,7 @@
 
 /* Keep permanent nodes for LOW_INT <= i < HIGH_INT */
 #define LOW_INT (-10)
-#define HIGH_INT 128
+#define HIGH_INT 256
 
 #define HEAP_CELLS 50000000
 #define STACK_SIZE 100000
--