f05e017d45
Thx to the ELF header given by the bootloader
9 lines
204 B
C
9 lines
204 B
C
#pragma once
|
|
#include "multiboot.h"
|
|
|
|
#include "types.h"
|
|
extern vaddr_t _stack_bottom;
|
|
extern vaddr_t _stack_top;
|
|
void printStackTrace(unsigned int maxFrame);
|
|
void stackSymbolSetup(multiboot_info_t *mbi);
|