mirror of https://github.com/0Nera/BMOSP.git
Стек увеличен до 16 кб
This commit is contained in:
parent
87d9ebeb7e
commit
29bfc8faba
|
@ -14,7 +14,7 @@
|
|||
#include <stdint.h>
|
||||
#include <sys.h>
|
||||
|
||||
#define STACK_SIZE 8192 // 8 килобайт на стек
|
||||
#define STACK_SIZE 16 * 1024 // 16 килобайт на стек
|
||||
|
||||
typedef struct task {
|
||||
uint64_t rax, rbx, rcx, rdx;
|
||||
|
|
|
@ -19,7 +19,10 @@ uint64_t full_init = 0;
|
|||
|
||||
void finally( ) {
|
||||
LOG("Готово! Для выхода из симуляции удерживайте: ESCAPE\n");
|
||||
for (;;) { asm volatile("hlt"); }
|
||||
for (;;) {
|
||||
task_switch( );
|
||||
asm volatile("hlt");
|
||||
}
|
||||
}
|
||||
|
||||
// Точка входа
|
||||
|
|
Loading…
Reference in New Issue