⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flashio.asm

📁 AMI_BIOS source code
💻 ASM
字号:
	page	,132
	title	Boot Block I/O suppor 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	bootblock_kbc_rtc_table
	public	bootblock_kbc_rtc_table_end
bootblock_kbc_rtc_table		label	byte
	include	bkbcrtc.inc
bootblock_kbc_rtc_table_end	label	byte
;---------------------------------------;
;	BOOTBLOCK_FDC_TABLE		;
;---------------------------------------;
	public	bootblock_fdc_table
	public	bootblock_fdc_table_end
bootblock_fdc_table		label	byte
	include	bfdc.inc
bootblock_fdc_table_end	label	byte
;---------------------------------------;
;*****************************************************************;
;*****************************************************************;
;**								**;
;**	(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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -