亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? setup.s

?? linux-2.6.15.6
?? S
?? 第 1 頁 / 共 2 頁
字號:
# to write everything into the same place.)meme801:	stc					# fix to work around buggy	xorw	%cx,%cx				# BIOSes which don't clear/set	xorw	%dx,%dx				# carry on pass/error of						# e801h memory size call						# or merely pass cx,dx though						# without changing them.	movw	$0xe801, %ax	int	$0x15	jc	mem88	cmpw	$0x0, %cx			# Kludge to handle BIOSes	jne	e801usecxdx			# which report their extended	cmpw	$0x0, %dx			# memory in AX/BX rather than	jne	e801usecxdx			# CX/DX.  The spec I have read	movw	%ax, %cx			# seems to indicate AX/BX 	movw	%bx, %dx			# are more reasonable anyway...e801usecxdx:	andl	$0xffff, %edx			# clear sign extend	shll	$6, %edx			# and go from 64k to 1k chunks	movl	%edx, (0x1e0)			# store extended memory size	andl	$0xffff, %ecx			# clear sign extend 	addl	%ecx, (0x1e0)			# and add lower memory into						# total size.# Ye Olde Traditional Methode.  Returns the memory size (up to 16mb or# 64mb, depending on the bios) in ax.mem88:#endif	movb	$0x88, %ah	int	$0x15	movw	%ax, (2)# Set the keyboard repeat rate to the max	movw	$0x0305, %ax	xorw	%bx, %bx	int	$0x16# Check for video adapter and its parameters and allow the# user to browse video modes.	call	video				# NOTE: we need %ds pointing						# to bootsector# Get hd0 data...	xorw	%ax, %ax	movw	%ax, %ds	ldsw	(4 * 0x41), %si	movw	%cs, %ax			# aka SETUPSEG	subw	$DELTA_INITSEG, %ax		# aka INITSEG	pushw	%ax	movw	%ax, %es	movw	$0x0080, %di	movw	$0x10, %cx	pushw	%cx	cld	rep 	movsb# Get hd1 data...	xorw	%ax, %ax	movw	%ax, %ds	ldsw	(4 * 0x46), %si	popw	%cx	popw	%es	movw	$0x0090, %di	rep	movsb# Check that there IS a hd1 :-)	movw	$0x01500, %ax	movb	$0x81, %dl	int	$0x13	jc	no_disk1		cmpb	$3, %ah	je	is_disk1no_disk1:	movw	%cs, %ax			# aka SETUPSEG	subw	$DELTA_INITSEG, %ax 		# aka INITSEG	movw	%ax, %es	movw	$0x0090, %di	movw	$0x10, %cx	xorw	%ax, %ax	cld	rep	stosbis_disk1:# Check for PS/2 pointing device	movw	%cs, %ax			# aka SETUPSEG	subw	$DELTA_INITSEG, %ax		# aka INITSEG	movw	%ax, %ds	movw	$0, (0x1ff)			# default is no pointing device	int	$0x11				# int 0x11: equipment list	testb	$0x04, %al			# check if mouse installed	jz	no_psmouse	movw	$0xAA, (0x1ff)			# device presentno_psmouse:#include "../../i386/boot/edd.S"# Now we want to move to protected mode ...	cmpw	$0, %cs:realmode_swtch	jz	rmodeswtch_normal	lcall	*%cs:realmode_swtch	jmp	rmodeswtch_endrmodeswtch_normal:        pushw	%cs	call	default_switchrmodeswtch_end:# we get the code32 start address and modify the below 'jmpi'# (loader may have changed it)	movl	%cs:code32_start, %eax	movl	%eax, %cs:code32# Now we move the system to its rightful place ... but we check if we have a# big-kernel. In that case we *must* not move it ...	testb	$LOADED_HIGH, %cs:loadflags	jz	do_move0			# .. then we have a normal low						# loaded zImage						# .. or else we have a high						# loaded bzImage	jmp	end_move			# ... and we skip movingdo_move0:	movw	$0x100, %ax			# start of destination segment	movw	%cs, %bp			# aka SETUPSEG	subw	$DELTA_INITSEG, %bp		# aka INITSEG	movw	%cs:start_sys_seg, %bx		# start of source segment	clddo_move:	movw	%ax, %es			# destination segment	incb	%ah				# instead of add ax,#0x100	movw	%bx, %ds			# source segment	addw	$0x100, %bx	subw	%di, %di	subw	%si, %si	movw 	$0x800, %cx	rep	movsw	cmpw	%bp, %bx			# assume start_sys_seg > 0x200,						# so we will perhaps read one						# page more than needed, but						# never overwrite INITSEG						# because destination is a						# minimum one page below source	jb	do_moveend_move:# then we load the segment descriptors	movw	%cs, %ax			# aka SETUPSEG	movw	%ax, %ds		# Check whether we need to be downward compatible with version <=201	cmpl	$0, cmd_line_ptr	jne	end_move_self		# loader uses version >=202 features	cmpb	$0x20, type_of_loader	je	end_move_self		# bootsect loader, we know of it# Boot loader doesnt support boot protocol version 2.02.# If we have our code not at 0x90000, we need to move it there now.# We also then need to move the params behind it (commandline)# Because we would overwrite the code on the current IP, we move# it in two steps, jumping high after the first one.	movw	%cs, %ax	cmpw	$SETUPSEG, %ax	je	end_move_self	cli					# make sure we really have						# interrupts disabled !						# because after this the stack						# should not be used	subw	$DELTA_INITSEG, %ax		# aka INITSEG	movw	%ss, %dx	cmpw	%ax, %dx	jb	move_self_1	addw	$INITSEG, %dx	subw	%ax, %dx			# this will go into %ss after						# the movemove_self_1:	movw	%ax, %ds	movw	$INITSEG, %ax			# real INITSEG	movw	%ax, %es	movw	%cs:setup_move_size, %cx	std					# we have to move up, so we use						# direction down because the						# areas may overlap	movw	%cx, %di	decw	%di	movw	%di, %si	subw	$move_self_here+0x200, %cx	rep	movsb	ljmp	$SETUPSEG, $move_self_heremove_self_here:	movw	$move_self_here+0x200, %cx	rep	movsb	movw	$SETUPSEG, %ax	movw	%ax, %ds	movw	%dx, %ssend_move_self:					# now we are at the right place	lidt	idt_48				# load idt with 0,0	xorl	%eax, %eax			# Compute gdt_base	movw	%ds, %ax			# (Convert %ds:gdt to a linear ptr)	shll	$4, %eax	addl	$gdt, %eax	movl	%eax, (gdt_48+2)	lgdt	gdt_48				# load gdt with whatever is						# appropriate# that was painless, now we enable a20	call	empty_8042	movb	$0xD1, %al			# command write	outb	%al, $0x64	call	empty_8042	movb	$0xDF, %al			# A20 on	outb	%al, $0x60	call	empty_8042##	You must preserve the other bits here. Otherwise embarrasing things#	like laptops powering off on boot happen. Corrected version by Kira#	Brown from Linux 2.2#	inb	$0x92, %al			# 	orb	$02, %al			# "fast A20" version	outb	%al, $0x92			# some chips have only this# wait until a20 really *is* enabled; it can take a fair amount of# time on certain systems; Toshiba Tecras are known to have this# problem.  The memory location used here (0x200) is the int 0x80# vector, which should be safe to use.	xorw	%ax, %ax			# segment 0x0000	movw	%ax, %fs	decw	%ax				# segment 0xffff (HMA)	movw	%ax, %gsa20_wait:	incw	%ax				# unused memory location <0xfff0	movw	%ax, %fs:(0x200)		# we use the "int 0x80" vector	cmpw	%gs:(0x210), %ax		# and its corresponding HMA addr	je	a20_wait			# loop until no longer aliased# make sure any possible coprocessor is properly reset..	xorw	%ax, %ax	outb	%al, $0xf0	call	delay	outb	%al, $0xf1	call	delay# well, that went ok, I hope. Now we mask all interrupts - the rest# is done in init_IRQ().	movb	$0xFF, %al			# mask all interrupts for now	outb	%al, $0xA1	call	delay		movb	$0xFB, %al			# mask all irq's but irq2 which	outb	%al, $0x21			# is cascaded# Well, that certainly wasn't fun :-(. Hopefully it works, and we don't# need no steenking BIOS anyway (except for the initial loading :-).# The BIOS-routine wants lots of unnecessary data, and it's less# "interesting" anyway. This is how REAL programmers do it.## Well, now's the time to actually move into protected mode. To make# things as simple as possible, we do no register set-up or anything,# we let the gnu-compiled 32-bit programs do that. We just jump to# absolute address 0x1000 (or the loader supplied one),# in 32-bit protected mode.## Note that the short jump isn't strictly needed, although there are# reasons why it might be a good idea. It won't hurt in any case.	movw	$1, %ax				# protected mode (PE) bit	lmsw	%ax				# This is it!	jmp	flush_instrflush_instr:	xorw	%bx, %bx			# Flag to indicate a boot	xorl	%esi, %esi			# Pointer to real-mode code	movw	%cs, %si	subw	$DELTA_INITSEG, %si	shll	$4, %esi			# Convert to 32-bit pointer# NOTE: For high loaded big kernels we need a#	jmpi    0x100000,__KERNEL_CS##	but we yet haven't reloaded the CS register, so the default size #	of the target offset still is 16 bit.#	However, using an operand prefix (0x66), the CPU will properly#	take our 48 bit far pointer. (INTeL 80386 Programmer's Reference#	Manual, Mixing 16-bit and 32-bit code, page 16-6)	.byte 0x66, 0xea			# prefix + jmpi-opcodecode32:	.long	0x1000				# will be set to 0x100000						# for big kernels	.word	__KERNEL_CS# Here's a bunch of information about your current kernel..kernel_version:	.ascii	UTS_RELEASE		.ascii	" ("		.ascii	LINUX_COMPILE_BY		.ascii	"@"		.ascii	LINUX_COMPILE_HOST		.ascii	") "		.ascii	UTS_VERSION		.byte	0# This is the default real mode switch routine.# to be called just before protected mode transitiondefault_switch:	cli					# no interrupts allowed !	movb	$0x80, %al			# disable NMI for bootup						# sequence	outb	%al, $0x70	lret# This routine checks that the keyboard command queue is empty# (after emptying the output buffers)## Some machines have delusions that the keyboard buffer is always full# with no keyboard attached...## If there is no keyboard controller, we will usually get 0xff# to all the reads.  With each IO taking a microsecond and# a timeout of 100,000 iterations, this can take about half a# second ("delay" == outb to port 0x80). That should be ok,# and should also be plenty of time for a real keyboard controller# to empty.#empty_8042:	pushl	%ecx	movl	$100000, %ecxempty_8042_loop:	decl	%ecx	jz	empty_8042_end_loop	call	delay	inb	$0x64, %al			# 8042 status port	testb	$1, %al				# output buffer?	jz	no_output	call	delay	inb	$0x60, %al			# read it	jmp	empty_8042_loopno_output:	testb	$2, %al				# is input buffer full?	jnz	empty_8042_loop			# yes - loopempty_8042_end_loop:	popl	%ecx	ret# Read the cmos clock. Return the seconds in algettime:	pushw	%cx	movb	$0x02, %ah	int	$0x1a	movb	%dh, %al			# %dh contains the seconds	andb	$0x0f, %al	movb	%dh, %ah	movb	$0x04, %cl	shrb	%cl, %ah	aad	popw	%cx	ret# Delay is needed after doing I/Odelay:	outb	%al,$0x80	ret# Descriptor tablesgdt:	.word	0, 0, 0, 0			# dummy	.word	0, 0, 0, 0			# unused	.word	0xFFFF				# 4Gb - (0x100000*0x1000 = 4Gb)	.word	0				# base address = 0	.word	0x9A00				# code read/exec	.word	0x00CF				# granularity = 4096, 386						#  (+5th nibble of limit)	.word	0xFFFF				# 4Gb - (0x100000*0x1000 = 4Gb)	.word	0				# base address = 0	.word	0x9200				# data read/write	.word	0x00CF				# granularity = 4096, 386						#  (+5th nibble of limit)idt_48:	.word	0				# idt limit = 0	.word	0, 0				# idt base = 0Lgdt_48:	.word	0x8000				# gdt limit=2048,						#  256 GDT entries	.word	0, 0				# gdt base (filled in later)# Include video setup & detection code#include "video.S"# Setup signature -- must be lastsetup_sig1:	.word	SIG1setup_sig2:	.word	SIG2# After this point, there is some free space which is used by the video mode# handling code to store the temporary mode table (not used by the kernel).modelist:.textendtext:.dataenddata:.bssendbss:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国毛片一区二区三区| 色婷婷综合久久久久中文| 成人黄色电影在线| 欧美日韩一级二级三级| 久久久www成人免费毛片麻豆| 亚洲另类中文字| 国产福利精品一区二区| 欧美精品日韩一本| 亚洲日本丝袜连裤袜办公室| 韩国成人精品a∨在线观看| 69久久99精品久久久久婷婷| 亚洲婷婷在线视频| 国产aⅴ综合色| 精品奇米国产一区二区三区| 亚洲福中文字幕伊人影院| 成人av第一页| 国产欧美久久久精品影院| 麻豆国产一区二区| 91精品国产综合久久福利软件| 丝袜国产日韩另类美女| 91视频.com| 中文字幕色av一区二区三区| 东方欧美亚洲色图在线| 26uuu亚洲婷婷狠狠天堂| 天天综合网 天天综合色| 欧美三级视频在线观看| 亚洲免费av网站| 色综合天天视频在线观看| 国产精品久久久久久久久免费樱桃 | 欧美在线999| 亚洲欧美色一区| 91精彩视频在线观看| 亚洲色图视频网站| 色综合天天综合网天天看片| 国产精品国产三级国产普通话99| 国产东北露脸精品视频| 国产女人18毛片水真多成人如厕| 国产成人精品一区二| 欧美经典一区二区| www.亚洲激情.com| 樱桃国产成人精品视频| 欧美三级蜜桃2在线观看| 亚洲国产欧美在线人成| 欧美日韩精品电影| 美女免费视频一区| 国产亚洲欧美日韩日本| 国产成人aaa| 亚洲欧美另类久久久精品| 在线免费精品视频| 日韩精品乱码免费| 久久综合九色综合欧美亚洲| 国产精品自在在线| 自拍av一区二区三区| 欧美麻豆精品久久久久久| 三级精品在线观看| 久久蜜桃香蕉精品一区二区三区| 懂色av一区二区三区蜜臀| 亚洲精品国产一区二区精华液 | 性做久久久久久免费观看欧美| 亚洲欧美在线视频观看| 色天天综合色天天久久| 三级一区在线视频先锋| 国产欧美精品一区二区色综合| 91丨porny丨户外露出| 视频一区二区国产| 国产精品欧美一级免费| 欧美日韩精品欧美日韩精品一综合| 久久99精品久久久| 亚洲欧美电影一区二区| 日韩久久久久久| 色婷婷一区二区| 久久99精品国产麻豆婷婷洗澡| 亚洲同性gay激情无套| 日韩免费看的电影| 99精品视频免费在线观看| 麻豆视频观看网址久久| 国产精品视频线看| 日韩一区二区在线观看视频| 成人黄色a**站在线观看| 日韩av一区二区在线影视| 亚洲欧美偷拍另类a∨色屁股| 日韩精品一区二区三区视频播放| 91蜜桃视频在线| 国内精品国产成人| 五月综合激情网| 亚洲色图视频网| 欧美韩国日本综合| 精品成a人在线观看| 在线观看成人免费视频| 成人蜜臀av电影| 韩国av一区二区| 蜜桃视频在线一区| 亚洲妇女屁股眼交7| 亚洲精品精品亚洲| 国产精品福利一区| 国产亚洲成av人在线观看导航| 欧美美女一区二区在线观看| 色综合久久九月婷婷色综合| 成人动漫一区二区三区| 国产一区在线不卡| 麻豆精品久久久| 日本特黄久久久高潮| 亚洲va韩国va欧美va| 亚洲一二三四在线观看| 最新不卡av在线| 久久电影网电视剧免费观看| 亚洲福利视频一区| 亚洲影视资源网| 亚洲最快最全在线视频| 亚洲天堂成人网| 日韩美女久久久| 亚洲婷婷综合色高清在线| 国产精品天美传媒| 中文字幕一区av| 国产精品私人影院| 欧美国产激情二区三区| 亚洲国产成人午夜在线一区| 国产人伦精品一区二区| 国产欧美一区二区精品久导航 | 久久久久免费观看| 国产欧美一区二区精品婷婷| 亚洲国产成人一区二区三区| 中文字幕精品综合| 亚洲柠檬福利资源导航| 亚洲在线免费播放| 日韩电影免费一区| 国产中文字幕精品| 成人国产一区二区三区精品| 99精品久久只有精品| 在线观看一区日韩| 91精品国产91久久综合桃花| 精品久久国产97色综合| 国产午夜精品理论片a级大结局| 国产精品蜜臀av| 亚洲综合一二三区| 看片的网站亚洲| 国产成人av电影在线播放| 99久久精品国产导航| 欧美日免费三级在线| 日韩精品一区二| 椎名由奈av一区二区三区| 亚洲大片免费看| 国产乱码精品一区二区三区忘忧草| 成人国产精品免费观看视频| 色婷婷综合激情| 精品成人a区在线观看| 亚洲欧美日韩国产手机在线| 亚欧色一区w666天堂| 国产精品1区2区3区在线观看| 97久久精品人人做人人爽50路| 欧美在线制服丝袜| 26uuu国产日韩综合| 亚洲免费在线电影| 国产中文一区二区三区| 91麻豆福利精品推荐| 欧美tickle裸体挠脚心vk| 中文字幕一区二区三| 久久精品国产99国产精品| 91老师国产黑色丝袜在线| 激情成人午夜视频| 国产精品正在播放| 欧美一区二区三区成人| 国产亚洲福利社区一区| 婷婷综合久久一区二区三区| 东方aⅴ免费观看久久av| 91麻豆高清视频| 夜夜操天天操亚洲| 国产xxx精品视频大全| 在线不卡免费欧美| 亚洲国产美女搞黄色| 欧美日韩一区在线| 欧美刺激午夜性久久久久久久| 国产无人区一区二区三区| 一区二区三区日韩欧美精品| 国产福利一区二区三区| 日韩欧美中文一区二区| 国产欧美日韩麻豆91| 极品少妇xxxx精品少妇| 欧美电影免费观看高清完整版| 亚洲国产日韩一级| 欧美老女人第四色| 亚洲精品第1页| 在线播放日韩导航| 日韩精品欧美精品| 欧美高清激情brazzers| 亚洲一区在线观看网站| 日本精品一级二级| 亚洲第一成年网| 日韩一二三区视频| 精品一区中文字幕| 中文字幕在线不卡国产视频| 北岛玲一区二区三区四区| 亚洲日韩欧美一区二区在线| 色老汉av一区二区三区| 国产美女娇喘av呻吟久久| 欧美日韩美少妇| av成人免费在线观看| 99久久99久久精品免费观看| 国产欧美日韩亚州综合| 99精品在线观看视频|