stivale2: Fix terminal stack offset bug

This commit is contained in:
mintsuki 2022-03-26 12:07:31 +01:00
parent 1ccb183139
commit f41e6b29a2

View File

@ -570,7 +570,7 @@ failed_to_load_header_section:
#if defined (__i386__)
if (stivale2_rt_stack == NULL) {
stivale2_rt_stack = ext_mem_alloc(8192);
stivale2_rt_stack = ext_mem_alloc(8192) + 8192;
}
tag->term_write = (uintptr_t)(void *)stivale2_term_write_entry;