From a4e45d1a7507620e05b32ab3fb2ef7ed6cfe0712 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sun, 2 Jun 2019 16:46:44 -0400 Subject: [PATCH] zasm: make fsdev buffer larger Now that we don't sed out the comments any more, we busted the buffer. --- tools/emul/zasm/zasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/emul/zasm/zasm.c b/tools/emul/zasm/zasm.c index c77ee08..bba87aa 100644 --- a/tools/emul/zasm/zasm.c +++ b/tools/emul/zasm/zasm.c @@ -49,7 +49,7 @@ static int inpt_size; static int inpt_ptr; static uint8_t middle_of_seek_tell = 0; -static uint8_t fsdev[0x20000] = {0}; +static uint8_t fsdev[0x40000] = {0}; static uint32_t fsdev_size = 0; static uint32_t fsdev_ptr = 0; static uint8_t fsdev_seek_tell_cnt = 0;