File:  [RetroPC.NET] / np2 / romimage / BIOS / EOI.X86
Revision 1.2: download - view: text, annotated - select for diffs
Thu Apr 15 01:35:53 2004 JST (21 years, 6 months ago) by yui
Branches: MAIN
CVS tags: VER_0_82_x64, VER_0_82, VER_0_81A, VER_0_81, VER_0_80, VER_0_79, VER_0_78, VER_0_77, VER_0_76, HEAD
fix bios (T.Yui)


sendeoi:		push	ax
				call	eoi
				pop		ax
biosnop:		iret

eoi:			mov		al, 0bh
				out		00h, al
				out		5fh, al
				in		al, 00h
				test	al, 80h
				je		short .master
				mov		al, 20h
				out		08h, al
				out		5fh, al
				mov		al, 0bh
				out		08h, al
				out		5fh, al
				in		al, 08h
				test	al, -1
				jne		short .ed
.master:		mov		al, 20h
				out		00h, al
.ed:			ret


RetroPC.NET-CVS <cvs@retropc.net>