macros.inc
来自「自己编写的操作系统的源代码」· INC 代码 · 共 40 行
INC
40 行
;******************************************************************************
;******************************************************************************
;** **
;** macros.inc **
;** **
;** Copyright (C) 2005-2006 Universe Corporation **
;** **
;** All Rights Reserved **
;** **
;** Lanzhou University Of Tecnology **
;** **
;** (0931)-2975931 **
;** **
;******************************************************************************
;******************************************************************************
;+ macro procedure / function definitiones ++++++++++++++++++++++++++++++++++++
io_delay macro
jcxz short $ + 2
jcxz short $ + 2
endm
jmp_if macro dst_segment:req,dst_offset:req
byte 0eah
word dst_offset
word dst_segment
endm
cpu_id macro index:req
mov eax,index
byte 0fh,0a2h
endm
reboot_machine macro
in al,92h
io_delay
or al,00000001b
out 92h,al
hlt
endm
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?