runtime: increase printf() buffer to 512

Mostly to fit the long panic message by interrupt_Handler, dumping all the registers
This commit is contained in:
Edgaru089 2021-10-11 22:50:56 +08:00
parent 103996db2a
commit 6ff7aff718

View File

@ -22,8 +22,8 @@ void _putchar(char c) {
}
}
int __io_WriteConsole_bufSize = 256;
UINT16 __io_WriteConsole_bufferReal[256];
int __io_WriteConsole_bufSize = 512;
UINT16 __io_WriteConsole_bufferReal[512];
UINT16 *__io_WriteConsole_buffer = __io_WriteConsole_bufferReal;
void __io_WriteConsole_ResizeBuffer(int size) {