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-02-18 03:53:54 +08:00
|
|
|
/**
|
|
|
|
* @name prepare_stack
|
|
|
|
*
|
|
|
|
* ```c
|
|
|
|
* void prepare_stack();
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
extern void prepare_stack();
|
2023-12-13 02:24:25 +08:00
|
|
|
|
|
|
|
#endif
|