14 lines
206 B
C
14 lines
206 B
C
|
|
#ifndef STACK_H
|
|
#define STACK_H
|
|
|
|
#include "mm/mm.h"
|
|
|
|
#define KERNEL_STACK_TOP PAGE_DIR_SELF_REF
|
|
|
|
#define STACK_INITIAL_SIZE 2 /* number of initial stack pages */
|
|
|
|
void stack_bootstrap();
|
|
|
|
#endif
|