From dc7c4e95f2c916a3f2742ee8eea54385b8096a9d Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Tue, 5 Dec 2023 03:16:21 +0000 Subject: [PATCH] Boot_code/Brainfuck_compiler: revert accidental increase in the stack size --- boot_code/brainfuck_compiler_v1.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot_code/brainfuck_compiler_v1.asm b/boot_code/brainfuck_compiler_v1.asm index 52a4a65..d321ff7 100644 --- a/boot_code/brainfuck_compiler_v1.asm +++ b/boot_code/brainfuck_compiler_v1.asm @@ -275,5 +275,5 @@ RET compiled: .ASCII '\rCompiled! \n' compiling: .ASCII 'Compiling...\0' 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