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.
2023-12-13 02:24:25 +08:00
|
|
|
#ifndef X86_64_KERNEL_H
|
|
|
|
#define X86_64_KERNEL_H 1
|
|
|
|
|
|
|
|
#include <types.h>
|
|
|
|
|
2024-01-20 23:50:03 +08:00
|
|
|
// 具有返回值是为了留出一个寄存器用于调整栈顶
|
|
|
|
extern usize prepare_stack();
|
2023-12-13 02:24:25 +08:00
|
|
|
|
|
|
|
#endif
|