⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bootsect.s

📁 南京航空航天大学开发的一个类Unix和Linux的操作系统,好不好看看就知道了,
💻 S
字号:
#include "bootparam.h"#include "bios.h"/* bootsect is loaded into 0000:7c00 (not 07c0:0000), its will    load setup into SETUPSEG, then setup contiue to load kernel */	.code16	.text	cli	ljmp $0x7c0,$nextnext:	pushw %cs	popw %ss	xorw %sp,%sp	movw $SETUPSEG,%ax	movw %ax,%es	xorw %bx,%bx	movb $READ,%service	movb $DISKA,%drive	movb $0,%cyl	movb $0,%head	movb $2,%sect		/* sector count from 1 */	movb $SETUPSIZE/SECTSIZE,%nsect	int $0x13ioerr:	jc ioerr	ljmp $SETUPSEG,$0	.org 510magic: .word 0xaa55

⌨️ 快捷键说明

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