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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? setup.s

?? 該文件是rt_linux
?? S
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
	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:# 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 only gets called, if we get loaded by the simple# bootsect loader _and_ have a bzImage to load.# Because there is no place left in the 512 bytes of the boot sector,# we must emigrate to code space here.bootsect_helper:	cmpw	$0, %cs:bootsect_es	jnz	bootsect_second	movb	$0x20, %cs:type_of_loader	movw	%es, %ax	shrw	$4, %ax	movb	%ah, %cs:bootsect_src_base+2	movw	%es, %ax	movw	%ax, %cs:bootsect_es	subw	$SYSSEG, %ax	lret					# nothing else to do for nowbootsect_second:	pushw	%cx	pushw	%si	pushw	%bx	testw	%bx, %bx			# 64K full?	jne	bootsect_ex	movw	$0x8000, %cx			# full 64K, INT15 moves words	pushw	%cs	popw	%es	movw	$bootsect_gdt, %si	movw	$0x8700, %ax	int	$0x15	jc	bootsect_panic			# this, if INT15 fails	movw	%cs:bootsect_es, %es		# we reset %es to always point	incb	%cs:bootsect_dst_base+2		# to 0x10000bootsect_ex:	movb	%cs:bootsect_dst_base+2, %ah	shlb	$4, %ah				# we now have the number of						# moved frames in %ax	xorb	%al, %al	popw	%bx	popw	%si	popw	%cx	lretbootsect_gdt:	.word	0, 0, 0, 0	.word	0, 0, 0, 0bootsect_src:	.word	0xffffbootsect_src_base:	.byte	0x00, 0x00, 0x01		# base = 0x010000	.byte	0x93				# typbyte	.word	0				# limit16,base24 =0bootsect_dst:	.word	0xffffbootsect_dst_base:	.byte	0x00, 0x00, 0x10		# base = 0x100000	.byte	0x93				# typbyte	.word	0				# limit16,base24 =0	.word	0, 0, 0, 0			# BIOS CS	.word	0, 0, 0, 0			# BIOS DSbootsect_es:	.word	0bootsect_panic:	pushw	%cs	popw	%ds	cld	leaw	bootsect_panic_mess, %si	call	prtstr	bootsect_panic_loop:	jmp	bootsect_panic_loopbootsect_panic_mess:	.string	"INT15 refuses to access high mem, giving up."# 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)# this is 64bit descriptor for code	.word	0xFFFF	.word	0	.word	0x9A00				# code read/exec	.word	0x00AF				# as above, but it is long mode and with D=0						# it does not seem to do the trick.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:

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一二三四久久| 欧美伊人久久大香线蕉综合69| 欧美日韩精品一区二区三区 | 欧美96一区二区免费视频| 波多野结衣91| 国产精品网站导航| 国产精品自拍毛片| 国产欧美日韩精品在线| 高清av一区二区| 中文在线一区二区| 色呦呦一区二区三区| 日韩福利视频网| 欧美精品免费视频| 蜜臀av一区二区在线免费观看 | 精品少妇一区二区三区在线视频| 亚洲一级在线观看| 成人va在线观看| 亚洲国产经典视频| av电影在线不卡| 五月天一区二区三区| 精品剧情v国产在线观看在线| 精品亚洲免费视频| 成人免费在线播放视频| 欧美日韩午夜影院| 国产在线一区二区| 一区二区高清免费观看影视大全| 欧美性大战xxxxx久久久| 免费成人在线视频观看| 欧美韩国日本一区| 欧美一级片在线| www.成人在线| 免费精品99久久国产综合精品| 国产欧美视频一区二区三区| 欧美视频一区二区| 国产精品小仙女| 久久国产尿小便嘘嘘| 一区二区三区日韩精品| 久久久久国产免费免费| 欧美乱妇15p| 91蜜桃在线免费视频| 精品一区二区在线视频| 香蕉成人啪国产精品视频综合网 | 国产亚洲短视频| 91久久国产最好的精华液| 国产黑丝在线一区二区三区| 视频一区二区国产| 亚洲成a人片在线观看中文| 中文字幕佐山爱一区二区免费| 久久久久久毛片| 精品日韩在线观看| 欧美电影精品一区二区| 欧美另类一区二区三区| 欧美精品在线视频| 91精品在线观看入口| 在线电影一区二区三区| 欧美性大战久久久久久久蜜臀| 色域天天综合网| 欧美在线视频日韩| 9191久久久久久久久久久| 欧美偷拍一区二区| 欧美一区永久视频免费观看| 日韩一区二区视频| 久久精品日产第一区二区三区高清版| 久久天堂av综合合色蜜桃网| 国产日产欧美一区二区三区| 日本一二三四高清不卡| 亚洲精品中文在线影院| 亚洲成人av在线电影| 激情五月婷婷综合| 成人av资源在线观看| 欧美亚洲禁片免费| 精品乱人伦小说| 最新热久久免费视频| 水蜜桃久久夜色精品一区的特点| 国内外成人在线| 色偷偷成人一区二区三区91| 91精品国产综合久久福利| 国产区在线观看成人精品| 亚洲一区二区视频在线| 国产揄拍国内精品对白| 在线影视一区二区三区| 久久久蜜臀国产一区二区| 亚洲精品菠萝久久久久久久| 国产一区日韩二区欧美三区| av电影天堂一区二区在线| 91精品国产综合久久福利软件| 国产精品乱人伦中文| 免费在线观看视频一区| 91丝袜国产在线播放| 精品裸体舞一区二区三区| 午夜精品久久久久久久| 91在线视频免费91| 国产欧美精品日韩区二区麻豆天美| 午夜欧美一区二区三区在线播放| 国产成人精品影视| 久久久久久久久久美女| 奇米精品一区二区三区四区| 色综合久久中文综合久久97 | 国产三级精品三级| 国产一区在线视频| 欧美大片国产精品| 精久久久久久久久久久| 日韩一区二区不卡| 国产综合色产在线精品 | 91国内精品野花午夜精品 | 中文字幕一区二区三区在线播放 | 久久一留热品黄| 国产精品麻豆欧美日韩ww| 日韩高清国产一区在线| 欧美电视剧在线观看完整版| 久久爱另类一区二区小说| 欧美videossexotv100| 精品在线观看免费| 欧美国产1区2区| 色综合久久久网| 美腿丝袜亚洲三区| 国产无人区一区二区三区| 成人福利电影精品一区二区在线观看| 国产午夜精品一区二区三区视频 | 丁香啪啪综合成人亚洲小说 | 欧美放荡的少妇| 国产一区二区三区观看| 亚洲人成网站在线| 欧美一激情一区二区三区| 国产伦精一区二区三区| 一区二区高清视频在线观看| 精品久久国产97色综合| 95精品视频在线| 狠狠色丁香婷婷综合久久片| 亚洲伦理在线免费看| 国产亚洲精品超碰| 8x福利精品第一导航| 91福利在线播放| av电影在线观看一区| 国产在线麻豆精品观看| 亚洲国产精品自拍| 亚洲乱码国产乱码精品精可以看 | 欧美色视频在线| 99国产麻豆精品| 国产黑丝在线一区二区三区| 蜜臀av一区二区在线免费观看 | 国产在线国偷精品免费看| 亚洲va中文字幕| 亚洲一区二区在线观看视频| 亚洲青青青在线视频| 国产精品国产三级国产三级人妇 | 亚洲欧洲制服丝袜| 中文字幕乱码亚洲精品一区| 2020国产成人综合网| 欧美mv日韩mv亚洲| 精品88久久久久88久久久| 欧美一区二区在线不卡| 日韩一区二区免费电影| 日韩免费成人网| 日韩欧美你懂的| 精品999在线播放| 欧美国产日本韩| 亚洲人一二三区| 亚洲午夜久久久久久久久电影院 | 国产精品免费免费| 亚洲视频免费在线观看| 亚洲午夜私人影院| 极品销魂美女一区二区三区| 国产成人av影院| 色综合久久久久综合体| 欧美精品色综合| 国产日韩欧美制服另类| 一区二区国产视频| 麻豆国产91在线播放| 成人毛片老司机大片| 欧美色视频在线观看| 国产亚洲一区字幕| 伊人色综合久久天天人手人婷| 久久超碰97中文字幕| 久久久国产综合精品女国产盗摄| 精品免费视频一区二区| 亚洲欧洲99久久| 免费成人你懂的| 欧美综合久久久| 国产午夜亚洲精品不卡| 蜜桃av一区二区在线观看| a美女胸又www黄视频久久| 日韩欧美区一区二| 亚洲永久精品大片| 国产成人av一区二区三区在线观看| 欧美日韩三级一区| 国产精品久久久久久久岛一牛影视| 午夜精品成人在线视频| 99久久精品国产导航| 久久亚洲捆绑美女| 久久99久久99精品免视看婷婷| 欧美亚洲国产一区二区三区va| 国产欧美va欧美不卡在线| 美腿丝袜一区二区三区| 日韩一二三区视频| 免费在线一区观看| 欧美成人乱码一区二区三区| 青青国产91久久久久久| 欧美性videosxxxxx| 亚洲va国产天堂va久久en|