Skip to content

Commit 78246ed

Browse files
committed
no_bios_hello_world
1 parent 9440bdf commit 78246ed

File tree

3 files changed

+61
-38
lines changed

3 files changed

+61
-38
lines changed

README.adoc

+28
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,34 @@ Open source x86 BIOS implementation.
691691

692692
Default BIOS for QEMU and KVM.
693693

694+
== No BIOS
695+
696+
Here we will collect some examples that do stuff without using the BIOS!
697+
698+
These tend to be less portable, not sure they will work on real hardware. But they were verified in QEMU.
699+
700+
=== No BIOS hello world
701+
702+
....
703+
./run no_bios_hello_world
704+
....
705+
706+
Source: link:no_bios_hello_world.S[]
707+
708+
Outcome:
709+
710+
....
711+
hello world
712+
....
713+
714+
with red foreground and blue background shows on the top left of the cleared screen.
715+
716+
This example uses the fact that BIOS maps video memory to address 0xB8000.
717+
718+
We can then move 0xB800 to a segment register and use segment:offset addressing to access this memory.
719+
720+
Then we can show characters by treating `0xB800:0000` as a `uint16_t` array, where low 8 bytes is the ASCII character, and the high 8 bytes is the color attribute of this character.
721+
694722
== Modes of operation
695723

696724
The x86 processor has a few modes, which have huge impact on how the processor works.

baremetal_hello_world.S

-38
This file was deleted.

no_bios_hello_world.S

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/* https://github.com/cirosantilli/x86-bare-metal-examples#no-bios-hello-world */
2+
3+
#include "common.h"
4+
5+
BEGIN
6+
mov $0xB800, %di
7+
mov %di, %es
8+
xor %di, %di
9+
lea msg, %si
10+
/* clear screen from SeaBIOS messages */
11+
xor %ax, %ax
12+
movw $2000, %cx
13+
repz stosw
14+
xor %di, %di
15+
/* write a string on the screen */
16+
.loop:
17+
lodsb
18+
test %al, %al
19+
jz .halt
20+
/* write the character */
21+
movb %al, %es:(%di)
22+
/* write color attribute of this character
23+
* 20d = 0x14 = 10100b = color attributes (red on blue)
24+
* background color = 1b = blue
25+
* foreground color = 100b = red
26+
*/
27+
movb $20, %es:1(%di)
28+
add $0x2, %di
29+
jmp .loop
30+
.halt:
31+
hlt
32+
msg:
33+
.asciz "hello world"

0 commit comments

Comments
 (0)