
Linux Kernel 0.12
文章平均质量分 61
GangsterPan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Bochs 在ubunut上面的搭建测试
1. sudo apt-get install bochssudo apt-get install bochs-xsudo apt-get install bochs-sdl问题一、安装bochs在terminal下输入下列代码 sudo apt-get install bochs 这样安装结束后,在我使用bochs的时候出现了下列错误: Event type原创 2013-04-25 15:10:53 · 1080 阅读 · 0 评论 -
ASM linux helloworld
Sourcecode:(NASM hello.asm)section .data ;section declarationmsg db "Hello, world!",0xa ;our dear stringlen equ $ - msg ;length of our dear stringsection原创 2013-05-06 17:41:58 · 827 阅读 · 0 评论