This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef X86_64_KERNEL_H
|
|
#define X86_64_KERNEL_H 1
|
|
|
|
#include <types.h>
|
|
|
|
// 具有返回值是为了留出一个寄存器用于调整栈顶
|
|
extern usize prepare_stack();
|
|
|
|
#endif
|