Write Your Own Operating System Tutorial(4) (轉)
Now is the time you’ve all been waiting for. Finally we get to the classic “first” program. Every decent programming book has a “Hello, World” program, and now we know enough to make a “Hello, World” operating system. If you have done some experimenting on your own and have already done this, then you may want to skthis lesson. We will create a function to print a string and use it to display our message.
It will get tedious to print one character at a time to the screen, so we’ll create a function to print a zero-tenated string to the screen. This is just a simple l that prints all the character in a string one at a time.
; ---------------------------------------------:namespace prefix = o ns = "urn:schemas--com::office" />
; Print a null-terminated string on the screen
; ---------------------------------------------
putstr:
lodsb ; AL = [DS:SI]
or al, al ; Set zero flag if al=0
jz putstrd ; jump to putstrd if zero flag is set
mov ah, 0x0e ; vo function 0Eh (print char)
mov bx, 0x0007 ; color
int 0x10
jmp putstr
putstrd:
retn
Now, a little on how to use this function. First you have to load the address of the first character of the string into the register SI. Then simply call this subroutine putstr.
You can create a string like this in your assembly file.
msg 'Hello, World!', 0
The zero on the end terminates the string. Then you can print the string to the screen using the following instructions.
mov si, msg ; Load address of message
call putstr ; Print the message
There is just one more thing that needs to be set up before this will work. The address msg, loaded into the register SI, is actually an offset off the beginning of the beginning of the segment that is pointed to by the register DS. So, before you can use the address msg, you must set up the current data segment. For now, we will use flat addressing from the bottom of physical RAM. To set the data segment to start from the bottom, set the DS register to zero. The following two instructions will do this.
xor ax, ax ; Zero out ax
mov ds, ax ; Set data segment to base of RAM
Try putting all of these parts together using the file from as a starting point. Then, using the same method described in Lesson 3, assemble your file, copy it to your floppy disk and boot with it. Have fun. If you get stuck, you can look at my solution, , but it’s no fair peeking until you’ve tried!
Once you have finished, proceed to the next lesson where we will learn how to make our operating system interactive.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-993852/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Write Your Own Operating System Tutorial(1) (轉)
- Write Your Own Operating System Tutorial(2) (轉)
- Write Your Own Operating System Tutorial(3) (轉)
- Write Your Own Operating System Tutorial(5) (轉)
- Write Your Own Operating System Tutorial(6) (轉)
- Write Your Own Operating System Tutorial(7) (轉)
- Write Your Own Operating System Tutorial(中文版) (轉)
- Write Your Own Operating System Tutorial(中文版) 簡介 (轉)
- Write Your Own Operating System Tutorial(中文版) 簡介
- Build Your Own Cas Service - ProUI
- operating-system structuresStruct
- Checking operating system version FailedAI
- Backup your Linux SystemLinux
- Checking operating system version Failed 續AI
- The Database Administrator's Operating System Account (25)Database
- Can one execute an operating system command from PL/SQL?SQL
- 【build your own xxx】實現你自己的bind函式UI函式
- mysql 啟動錯誤(InnoDB: Operating system error number 13 )MySqlError
- MYSQL-Operating System Error Codes(錯誤程式碼)MySqlError
- 【build your own xxx】實現你自己的call和applyUIAPP
- redhat your system appears to have shut down uncleanlyRedhatAPP
- 作業系統-Operating-System第一章:概述作業系統
- 安裝 ESXi 出現錯誤 ERROR 1962: No operating system foundError
- Protecting Your Database: Specifying Passwords for Users SYS and SYSTEM (70)Database
- 使用oracle的作業系統認證(Operating System Authentication)的方法Oracle作業系統
- Microsoft Agent Tutorial Chapter 1 (轉)ROSAPT
- Microsoft Agent Tutorial Chapter 2 (轉)ROSAPT
- Linux安裝Oracle報Checking operating system version must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0,LinuxOracleRedhat
- Entity Framework Tutorial Basics(4):Setup Entity Framework EnvironmentFramework
- Discover Your Missed ASM Disks(轉)ASM
- 【OEL】Oracle Enterprise Linux Operating System下載方法及安裝體驗OracleLinux
- Python3.4 Tutorial9 - Classes (Part 4)Python
- Tutorial: Hello World with Ant(轉,來自apache)Apache
- She Got her ownGo
- 轉載:System:System.arraycopy方法詳解
- Pytorch | Tutorial-03 資料轉換PyTorch
- Win10系統無法開機提示“error loading operating system”怎麼解決Win10Error
- 升級windows10顯示Missing Operating System無法進入系統如何解決Windows