Boot_code/Brainfuck_compiler: revert accidental increase in the stack size

This commit is contained in:
(Tim) Efthimis Kritikos 2023-12-05 03:16:21 +00:00
parent acc0581124
commit dc7c4e95f2

View File

@ -275,5 +275,5 @@ RET
compiled: .ASCII '\rCompiled! \n' compiled: .ASCII '\rCompiled! \n'
compiling: .ASCII 'Compiling...\0' compiling: .ASCII 'Compiling...\0'
bootup_msg: .ASCII 'Native 8086 brainfuck compiler v1\n' bootup_msg: .ASCII 'Native 8086 brainfuck compiler v1\n'
.BLKB 10 ; Using the text as stack space for the compiled program .BLKB 6 ; Using the text as stack space for the compiled program
STACK_COMPILER: ; brainfuck_mandelbrot depends on stack being at the end STACK_COMPILER: ; brainfuck_mandelbrot depends on stack being at the end