Write Your Own Operating System Tutorial(3) (轉)
In this lesson we will learn to use an assembler to write our programs. In previous lessons we have assembled them using DE. After playing around with this for a while, you will quickly see that it would be a pain to use DEBUG to create a program of more than a handful of instructions (even harder to modify). We need a simpler way. We will start by using thew Assembler” (NASM). Go to the official page at and a copy of the assembler.
Now we’ll use this assembler to create the same “operating system” that we did at the end of . Download the boot program and take a look at it. The first instruction should be somewhat familiar by now. This is the instruction to jump over the Boot Record data. In this case, it’s a jump to the label begin. After the jump instruction is 20 bytes of data. This is the data that I read off my floppy disk using the DEBUG program. These values should work fine. If you want, try replacing the data with the data from your own disk. Most of it should be the same.
(NOTE: Keep in mind that numbers made up of more than 1 byte will look “byte sped” when viewed in DEBUG because on the architecture, the least significant byte is stored at the lowest memory address and vice versa. The bytes will look backwards.)
The code starting at the label begin should look similar to the code we wrote for Lesson 2. It simply prints the letter ‘H’ to the screen and ls forever. At the bottom of this file you will see first a check to make sure the code all fits within 512 bytes (the size of one sector), then the line beginning with the “times” adds zerto the end of the file to pad the executable to 510 bytes. Finally, the two-byte signature 0x55, 0xAA is added to the end of the file. Assemble the file at the command prompt with the following command.
nasmw h.asm –o h.bin:namespace prefix = o ns = "urn:schemas--com::office" />
This assembles the assembly file to a pure binary executable h.bin. Check the size of the binary file. If we have done things right, it should be exactly 512 bytes. This is exactly the size needed to fit in the boot sector of the floppy.
Now we need to copy this file onto our floppy. With the floppy in the disk, run DEBUG, and type the following commands
debug
-n h.bin
-l 0
This loads our file into memory starting at address 0. Use the dump (d) and unassemble (u) commands if you wish to confithat our file has assembled and been loaded correctly. You will be able to see the few instructions that we have written. Notice that the file has been correctly padded with zeros up until bytes 0x1FE and 0x1FF at the end of the sector. Also note that DEBUG fills the CX register with the number of bytes loaded from the file. (Display the contents of the registers with the r command.)
With the floppy disk in the drive, write the file to the disk with the usual command.
-w 0 0 0 1
Reboot the computer with the floppy and see the program in action. Try some more things with the code, now. For example, maybe modify the code to print more characters. When you are ready, proceed to the next lesson where we will create a “Hello, World” operating system.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-993853/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- operating-system structuresStruct
- Is programming an Operating System so hard?
- What’s your own way of spending two-day weekend?
- mysql 啟動錯誤(InnoDB: Operating system error number 13 )MySqlError
- 【build your own xxx】實現你自己的bind函式UI函式
- 【build your own xxx】實現你自己的call和applyUIAPP
- 作業系統-Operating-System第一章:概述作業系統
- Pytorch | Tutorial-03 資料轉換PyTorch
- 轉載:System:System.arraycopy方法詳解
- Zeiss tutorial
- COMP3230 Principles of Operating Systems
- simvison tutorial pdf
- Batch Scripting TutorialBAT
- 【轉載】System_Verilog列印格式
- RabbitMQ tutorial - "Hello world!"MQ
- System.Linq.Dynamic字串轉委託字串
- 作業系統概念(Operating System Concepts Ninth Edition恐龍書)第三章課後非程式設計題答案作業系統程式設計
- Linux核心同步機制之(五):Read Write spin lock【轉】Linux
- Your title
- linux symbolic link attack tutorialLinuxSymbol
- [譯]A Simple CSS Animation TutorialCSS
- Vue 3 Reactivity System Source Code Reading: `markRaw`VueReact
- MySQL double writeMySql
- [Javascript] Write .call()JavaScript
- MongoDB Write ConcernMongoDB
- hio_write
- Scan Your Truck Using Nexiq Adapter: Simplifying Your Diagnostic ProcessAPT
- Operating Systems: Principles and Practice 2nd ed. Edition
- Tutorial: Create SQL Cluster(FCI) on RHELSQL
- Tutorial: Add a node to SQL cluster on RHELSQL
- Hive Tutorial 閱讀記錄Hive
- Prettier your projectProject
- Offering Your Seat
- 閉包的理解-from my own opinion
- [react-control-center tutorial 3] 資料驅動檢視的靈魂setStateReact
- Unity 3D 打造自己的Mecanim Callback SystemUnity3D
- Basic "info" tutorial in stand-alone program
- Structuring Your TensorFlow ModelsStruct
- translate-your-site