mpfpstr.asm

来自「<BIOS研发技术剖析>书的源代码,包括完整的BIOS汇编语言源程序」· 汇编 代码 · 共 55 行

ASM
55
字号
;*****************************************************************;
;*****************************************************************;
;**                                                             **;
;**      (C)Copyright 1985-1996, American Megatrends, Inc.      **;
;**                                                             **;
;**                     All Rights Reserved.                    **;
;**                                                             **;
;**           6145-F Northbelt Pkwy, Norcross, GA 30071         **;
;**                                                             **;
;**                     Phone (770)-246-8600                    **;
;**                                                             **;
;*****************************************************************;
;*****************************************************************;
cgroup  group   _text
_text   segment para    public  USE16   'CODE'
        assume  cs:cgroup

;---------------------------------------------------------------;
; 	MP FLOATING POINTER STRUCTURE				;
;---------------------------------------------------------------;
; As defined in PC+MP Spec 1.1 dated April 1994			;
;---------------------------------------------------------------;
align	16				; must be on a 16-byte boundary
	public	mp_floating_pointer_structure
mp_floating_pointer_structure	label	byte
	db	"????"			; _MP_ search key
	dd	0000h			; Address of MP table in flat mode
					; to be initialized by POST code
	db	01h			; Length of this table in 16-byte blocks
	db	01h			; MP Spec Version #
	db	00h			; Checksum of this structure
					; to be initialized by POST
	db	00h			; MP Feature Info Byte 1
					; May hold default table if necessary
	db	00h			; MP Feature Info Byte 2	
	db	00h			; MP Feature Info Byte 3	
	db	00h			; MP Feature Info Byte 4	
	db	00h			; MP Feature Info Byte 5

;*****************************************************************;
;*****************************************************************;
;**                                                             **;
;**      (C)Copyright 1985-1996, American Megatrends, Inc.      **;
;**                                                             **;
;**                     All Rights Reserved.                    **;
;**                                                             **;
;**           6145-F Northbelt Pkwy, Norcross, GA 30071         **;
;**                                                             **;
;**                     Phone (770)-246-8600                    **;
;**                                                             **;
;*****************************************************************;
;*****************************************************************;
_text   ends
        end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?