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:
parent
103996db2a
commit
6ff7aff718
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user