feat: reduce amount of memory used by interpreter

This commit is contained in:
Giovani
2021-06-16 19:37:47 -04:00
parent 19ca19ac24
commit aaf51b4c13

View File

@@ -10,7 +10,7 @@ class MemoryException(Exception):
pass
class Memory:
BUFFER_SIZE = 300_000
BUFFER_SIZE = 30_000
buffer = [0 for _ in range(BUFFER_SIZE)]
pointer = 0
input_buffer = []