AMI 主板的BIOS源码

源代码在线查看: message.asm

软件大小: 6261 K
上传用户: fq335288450
关键词: BIOS AMI 主板 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

					page	60,132
					title	MESSAGE MODULE..STRING SET 9..SPECIAL CONFIG DISPLAY MESSAGES
				;---------------------------------------;
				;*****************************************************************;
				;*****************************************************************;
				;**								**;
				;**	(C)Copyright 1985-1996, American Megatrends Inc.	**;
				;**								**;
				;**			All Rights Reserved.			**;
				;**								**;
				;**		6145-F, Northbelt Parkway, Norcross,		**;
				;**								**;
				;**		Georgia - 30071, USA. Phone-(770)-246-8600.	**;
				;**								**;
				;*****************************************************************;
				;*****************************************************************;
				;---------------------------------------;
					include	makeflag.equ
				;---------------------------------------;
				cgroup	group	_text
				_text	segment	word	public	'CODE'
					assume	cs:cgroup
				;---------------------------------------;
					public	_MESSAGE_STARTS
				_MESSAGE_STARTS	label	byte		; marks start of module
				;-----------------------------------------------------------------------;
				;				STRING SET 9				;
				;-----------------------------------------------------------------------;
				;  this string set contains the messages to be displayed from the	;
				;  SPECIAL_CONFIG_DISPLAY routine e.g. cache size, cpu frequency, etc.	;
				;  each message can be of more than one line but the maximum number of	;
				;  characters in a line can be 76. each message must end with a 0 (NULL);
				;  character. please note that NULL character is not included in the	;
				;  length of message.							;
				;-----------------------------------------------------------------------;
					public	_StrSet9
				_StrSet9	equ	9
					public	string_set_9
				string_set_9	label	word
				start_string_def	label	byte		; (CORE0228+)
					public agp_display
				agp_display		equ	0
					db	"AGP ",0
					public	edo_memory_msg
				edo_memory_msg		equ	agp_display+1
					db	'EDO DRAM at DIMM # : ',0
					public	sdram_memory_msg
				sdram_memory_msg	equ	edo_memory_msg+1
					db	'SDRAM at DIMM  #   : ',0
					public	fpm_memory_msg
				fpm_memory_msg		equ	sdram_memory_msg+1
					db	'FP DRAM at DIMM  # : ',0
					public	rsdram_memory_msg
				rsdram_memory_msg	equ	fpm_memory_msg+1
					db	'RSDRAM at DIMM #   : ',0
					public	ecc_disabled_msg
				ecc_disabled_msg	equ	rsdram_memory_msg+1
					db	'Turning off EC-Only/ECC mode because x72''s not detected',0dh,0ah
					db	'Press any key to continue',0dh,0ah,0
				end_string_def	label	byte		; (CORE0228+)
				;-----------------------------------------------------------------------;
				;  all strings must come after STRING_SET_9 label.			;
				;***********************************************************************;
				;***********************************************************************;
				;********							********;
				;********			EXAMPLE				********;
				;********							********;
				;********	string_1st	equ	0			********;
				;********			db	'String-1',0		********;
				;********	string_2nd	equ	string_1st+1		********;
				;********			db	'String-2',0		********;
				;********							********;
				;***********************************************************************;
				;***********************************************************************;
				;-----------------------------------------------------------------------;
				;*****************************************************************;
				;*****************************************************************;
				;**								**;
				;**	(C)Copyright 1985-1996, American Megatrends Inc.	**;
				;**								**;
				;**			All Rights Reserved.			**;
				;**								**;
				;**		6145-F, Northbelt Parkway, Norcross,		**;
				;**								**;
				;**		Georgia - 30071, USA. Phone-(770)-246-8600.	**;
				;**								**;
				;*****************************************************************;
				;*****************************************************************;
				;---------------------------------------;
					public	_MESSAGE_ENDS
				_MESSAGE_ENDS	label	byte			; marks end of module
				;---------------------------------------;
				_text	ends
					end
							

相关资源