pseudo.s

来自「linux 的引导程序源码The Microsoft&reg Windows&r」· S 代码 · 共 63 行

S
63
字号
; pseudo.S -- produce a pseudo kernel header;;	This file is useful for booting arbitrary binary images;	at	0x1000:0000;; Copyright 2002 John Coffman.; All rights reserved.; ; Licensed under the terms contained in the file 'COPYING' in the ; source directory.;#define DEBUG 0#define DELL_DIRTY_HACKSYSSEG	=  0x1000	; DEF_SYSSEGSETUPSEG = 0x9020	; DEF_SETUPSEG		.text#if 0.globl	_main_main:#endif		.globl	zerozero:; we want this to look like a bootable kernel image; so we include the following header;		jmp	begin		.ascii	"Sudo"		; NOT a real kernel; so,					;            avoid all patching		.word	0x0000		; header format version number		.word	0,0		; realmode switch, SETUPSEG		.word	SYSSEG		; SYSSEG -- load at 1000:0000		.word	id_string		.byte	0		; type of loader		.byte	0		; flags 0=load low		.word	0x200		; move size		dd	0x1000		; load us here		dd	0		; ramdisk image		.word	bs_helper,SETUPSEG	; kludge???		.word	modelist+1024	; heap end pointer;----------end of header------------		begin:	jmpi	0000,SYSSEG			; jmp to 0x1000:0000bs_helper:      int     0x19			;label here for kludgeid_string:	.ascii	"pseudo.b"		.byte	0		.blkb	zero+512-*modelist:theend:

⌨️ 快捷键说明

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