www.久久久久|狼友网站av天堂|精品国产无码a片|一级av色欲av|91在线播放视频|亚洲无码主播在线|国产精品草久在线|明星AV网站在线|污污内射久久一区|婷婷综合视频网站

當前位置:首頁 > > 充電吧
[導讀]Writing a message using the BIOSQuick review:Boot sector loaded by BIOS is 512 bytesThe code in the

Writing a message using the BIOS

Quick review:

Boot sector loaded by BIOS is 512 bytesThe code in the boot sector of the disk is loaded by the BIOS at 0000:7c00Machine starts in?Real ModeBe aware that the CPU is being interrupted unless you issue the?CLI?assembly command

Many (but not all) BIOS interrupts expect DS to be filled with a Real Mode segment value. This is why many BIOS interrupts won't work in protected mode. So if you want to use int 10h/ah=0eh to print to the screen, then you need to make sure that your seg:offset for the characters to print is correct.

In real mode, addresses are calculated as segment * 16 + offset. Since offset can be much larger than 16, there are many pairs of segment and offset that point to the same address. For instance, some say that the bootloader is is loaded at 0000:7C00, while others say 07C0:0000. This is in fact the same address: 16 * 0x0000 + 0x7C00 = 16 * 0x07C0 + 0x0000 = 0x7C00.

It doesn't matter if you use 0000:7c00 or 07c0:0000, but if you use ORG you need to be aware of what's happening. By default, the start of a raw binary is at offset 0, but if you need it you can change the offset to something different and make it work. For instance the following snippet accesses the variable msg with segment 0x7C0.

Asm Example:

;?boot.asm
???mov?ax,?0x07c0
???mov?ds,?ax
?
???mov?si,?msg
ch_loop:lodsb
???or?al,?al?;?zero=end?or?str
???jz?hang???;?get?out
???mov?ah,?0x0E
???int?0x10
???jmp?ch_loop
?
hang:
???jmp?hang
?
msg???db?'Welcome?to?Macintosh',?13,?10,?0
???times?510-($-$$)?db?0
???db?0x55
???db?0xAA

Here is the ORG version. This time, msg is accessed with segment 0. Note that you still need to tell DS what to be as it can hold any value.

[ORG?0x7c00]
?
???xor?ax,?ax?;?make?it?zero
???mov?ds,?ax
?
???mov?si,?msg
ch_loop:lodsb
???or?al,?al??;?zero=end?of?string
???jz?hang????;?get?out
???mov?ah,?0x0E
???int?0x10
???jmp?ch_loop
?
hang:
???jmp?hang
?
msg???db?'Welcome?to?Macintosh',?13,?10,?0
?
???times?510-($-$$)?db?0
???db?0x55
???db?0xAA


Procedures

To save on writing space, the typical 'procedures' are often separated from the code using CALL/RET like the following:

[ORG?0x7c00]
???xor?ax,?ax??;make?it?zero
???mov?ds,?ax
?
???mov?si,?msg
???call?bios_print
?
hang:
???jmp?hang
?
msg???db?'Welcome?to?Macintosh',?13,?10,?0
?
bios_print:
???lodsb
???or?al,?al??;zero=end?of?str
???jz?done????;get?out
???mov?ah,?0x0E
???int?0x10
???jmp?bios_print
done:
???ret
?
???times?510-($-$$)?db?0
???db?0x55
???db?0xAA

For some inexplicable reason, loading SI?then?jumping to the procedure always bugged me. Fortunately for psychos like me NASM's macros let you pretend that you are passing a parameter (macro definitions has to go before it's being called).

%macro?BiosPrint?1
????????????????mov?si,?word?%1
ch_loop:lodsb
???or?al,?al
???jz?done
???mov?ah,?0x0E
???int?0x10
???jmp?ch_loop
done:
%endmacro
?
[ORG?0x7c00]
???xor?ax,?ax
???mov?ds,?ax
?
???BiosPrint?msg
?
hang:
???jmp?hang
?
msg???db?'Welcome?to?Macintosh',?13,?10,?0
?
???times?510-($-$$)?db?0
???db?0x55
???db?0xAA

And in case your code is becoming long and unreadable, you can break it up into different files, then include the files at the beginning of you main code. Like so:

jmp?main
?
%include?"othercode.inc"
?
main:
???;?...?rest?of?code?here

Don't forget the jmp main at the start - otherwise some random other procedure will get called.

本站聲明: 本文章由作者或相關機構授權發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內容真實性等。需要轉載請聯(lián)系該專欄作者,如若文章內容侵犯您的權益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

LED驅動電源的輸入包括高壓工頻交流(即市電)、低壓直流、高壓直流、低壓高頻交流(如電子變壓器的輸出)等。

關鍵字: 驅動電源

在工業(yè)自動化蓬勃發(fā)展的當下,工業(yè)電機作為核心動力設備,其驅動電源的性能直接關系到整個系統(tǒng)的穩(wěn)定性和可靠性。其中,反電動勢抑制與過流保護是驅動電源設計中至關重要的兩個環(huán)節(jié),集成化方案的設計成為提升電機驅動性能的關鍵。

關鍵字: 工業(yè)電機 驅動電源

LED 驅動電源作為 LED 照明系統(tǒng)的 “心臟”,其穩(wěn)定性直接決定了整個照明設備的使用壽命。然而,在實際應用中,LED 驅動電源易損壞的問題卻十分常見,不僅增加了維護成本,還影響了用戶體驗。要解決這一問題,需從設計、生...

關鍵字: 驅動電源 照明系統(tǒng) 散熱

根據LED驅動電源的公式,電感內電流波動大小和電感值成反比,輸出紋波和輸出電容值成反比。所以加大電感值和輸出電容值可以減小紋波。

關鍵字: LED 設計 驅動電源

電動汽車(EV)作為新能源汽車的重要代表,正逐漸成為全球汽車產業(yè)的重要發(fā)展方向。電動汽車的核心技術之一是電機驅動控制系統(tǒng),而絕緣柵雙極型晶體管(IGBT)作為電機驅動系統(tǒng)中的關鍵元件,其性能直接影響到電動汽車的動力性能和...

關鍵字: 電動汽車 新能源 驅動電源

在現代城市建設中,街道及停車場照明作為基礎設施的重要組成部分,其質量和效率直接關系到城市的公共安全、居民生活質量和能源利用效率。隨著科技的進步,高亮度白光發(fā)光二極管(LED)因其獨特的優(yōu)勢逐漸取代傳統(tǒng)光源,成為大功率區(qū)域...

關鍵字: 發(fā)光二極管 驅動電源 LED

LED通用照明設計工程師會遇到許多挑戰(zhàn),如功率密度、功率因數校正(PFC)、空間受限和可靠性等。

關鍵字: LED 驅動電源 功率因數校正

在LED照明技術日益普及的今天,LED驅動電源的電磁干擾(EMI)問題成為了一個不可忽視的挑戰(zhàn)。電磁干擾不僅會影響LED燈具的正常工作,還可能對周圍電子設備造成不利影響,甚至引發(fā)系統(tǒng)故障。因此,采取有效的硬件措施來解決L...

關鍵字: LED照明技術 電磁干擾 驅動電源

開關電源具有效率高的特性,而且開關電源的變壓器體積比串聯(lián)穩(wěn)壓型電源的要小得多,電源電路比較整潔,整機重量也有所下降,所以,現在的LED驅動電源

關鍵字: LED 驅動電源 開關電源

LED驅動電源是把電源供應轉換為特定的電壓電流以驅動LED發(fā)光的電壓轉換器,通常情況下:LED驅動電源的輸入包括高壓工頻交流(即市電)、低壓直流、高壓直流、低壓高頻交流(如電子變壓器的輸出)等。

關鍵字: LED 隧道燈 驅動電源
關閉