From 6efc1ebed7131a8cd88aafdce8eaa8ee0260d692 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sat, 16 Jan 2021 11:35:31 -0800 Subject: 7529 - baremetal: fake screen --- baremetal/boot.hex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'baremetal/boot.hex') diff --git a/baremetal/boot.hex b/baremetal/boot.hex index 3f78ca7a..1fc316c5 100644 --- a/baremetal/boot.hex +++ b/baremetal/boot.hex @@ -58,13 +58,13 @@ # calls, so we don't need to initialize the stack. # 0e: - # load second sector from disk + # load some sectors from disk b4 02 # ah <- 2 # read sectors from disk # dl comes conveniently initialized at boot time with the index of the device being booted b5 00 # ch <- 0 # cylinder 0 b6 00 # dh <- 0 # track 0 b1 02 # cl <- 2 # second sector, 1-based - b0 20 # al <- 32 # number of sectors to read; all sectors must be in a single track + b0 3e # al <- 62 # number of sectors to read; all sectors must be in a single track # address to write sectors to = es:bx = 0x7e00, contiguous with boot segment bb 00 00 # bx <- 0 8e c3 # es <- bx -- cgit 1.4.1-2-gfad0 > about summary refs log tree commit diff stats
path: root/src/config/scripts.h
blob: ef306c3714498f80fb31ac6e6955f6ec67f4a76b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45