set_kernel_gs.c
来自「阿基米德操作系统的源代码」· C语言 代码 · 共 30 行
C
30 行
///////////////////////////////////////////////////////////
#include "general.h"
#include "hd_info_struct.h"
#include "dir_entry.h"
#include "msdos_dir_entry.h"
#include "d_inode.h"
#include "m_inode.h"
#include "buffer_head.h"
#include "fat_cache.h"
#include "file.h"
#include "hd_request_struct.h"
#include "super_block.h"
#include "common_head.h"///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
void set_kernel_gs(void)
{
__asm__ __volatile__("mov %%ax,%%gs"::"a" (16));
return;
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?