摘要: 前段时间一直忙于其他事情,Orange'S的学习暂时搁浅了。现在可以更多时间学习编写操作系统了,把之前学过的重新温习一下。学习环境 Ubuntu 11.04 + Bochs 2.4.6 + NASM主要工作1. 第一章 马上动手写一个最小的“操作系统”代码如下: 1 org 07c00h ; tell the compiler that the program is loaded at 7c00 2 mov ax, cs 3 mov ds, ax 4 mov es, ax 5 call DispStr ; call the example about string d... 阅读全文
posted @ 2011-10-23 00:45 大有|元亨 阅读(9047) 评论(3) 推荐(1)