io.asm
来自「AMI 主板的BIOS源码」· 汇编 代码 · 共 49 行
ASM
49 行
page ,132
title I/O support table
;*****************************************************************;
;*****************************************************************;
;** **;
;** (C)Copyright 1985-1996, American Megatrends Inc. **;
;** **;
;** All Rights Reserved. **;
;** **;
;** 6145-F, Northbelt Parkway, Norcross, **;
;** **;
;** Georgia - 30071, USA. Phone-(770)-246-8600. **;
;** **;
;*****************************************************************;
;*****************************************************************;
;---------------------------------------;
DefineDevice macro x
extrn x:near
dw offset cgroup:x
endm
;---------------------------------------;
cgroup group _text
_text segment word public 'CODE'
assume cs:cgroup
;---------------------------------------;
; BOOTBLOCK_KBC_RTC_TABLE ;
;---------------------------------------;
public PeripheralTableStart
public PeripheralTableEnd
PeripheralTableStart label word
include io.inc
PeripheralTableEnd label word
;---------------------------------------;
;*****************************************************************;
;*****************************************************************;
;** **;
;** (C)Copyright 1985-1996, American Megatrends Inc. **;
;** **;
;** All Rights Reserved. **;
;** **;
;** 6145-F, Northbelt Parkway, Norcross, **;
;** **;
;** Georgia - 30071, USA. Phone-(770)-246-8600. **;
;** **;
;*****************************************************************;
;*****************************************************************;
_text ends
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?