学习制作操作系统 0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习制作操作系统 0相关的知识,希望对你有一定的参考价值。

參考资料:自己动手写操作系统(于渊)

开发环境:Virtual Box。Bochs;NASM

	ORG 07c00h
	mov ax,cs
	mov ds,ax
	mov es,ax
	call DispStr
	jmp $
DispStr:
	mov ax,BootMessage
	mov bp,ax
	mov cx,16
	mov ax,01301h
	mov bx,000ch
	mov dl,0
	int 10h
	ret
BootMessage:	db	"Hello,OS World!"
	times 510-($-$$)	db	0
	dw 0xaa55

重要命令:nasm boot.asm -dimg -o os.img      /*将asm文件编译为img文件。通过Virtual Box虚拟机软盘启动系统


以上是关于学习制作操作系统 0的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

Javalucene4.0学习心得

学习制作操作系统 0

C#程序员经常用到的10个实用代码片段

带有 TabLayout 的片段内的 ScrollView 不滚动,为啥?

linux学习:Nginx--常见功能配置片段与优化-06