aboutsummaryrefslogtreecommitdiffhomepage
path: root/print.html
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2025-02-20 19:41:10 +0000
committerjohannst <johannst@users.noreply.github.com>2025-02-20 19:41:10 +0000
commit5a3e8872283eb758816b1547a98f52a251e4d31e (patch)
tree90a858d9a9eea0af6a3644b5c99a96f34372da74 /print.html
parent267bb0d3d2b7ba892f8f5d88f14f1be1aac0df11 (diff)
downloadnotes-5a3e8872283eb758816b1547a98f52a251e4d31e.tar.gz
notes-5a3e8872283eb758816b1547a98f52a251e4d31e.zip
deploy: 496a4126f52649ea954ce6be2cdfeb1d7a02c372
Diffstat (limited to 'print.html')
-rw-r--r--print.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/print.html b/print.html
index e1ca711..21ef4ac 100644
--- a/print.html
+++ b/print.html
@@ -8411,12 +8411,12 @@ descriptor table (GDT)</em>. A string is printed in each mode.</p>
jmp 0x0000:entry_rm16
entry_rm16:
- // Set video mode 3, see [1].
+ // Set video mode 3h, see [1].
// * 80x25 text mode
// * 640x200 pixel resolution (8x8 pixel per char)
// * 16 colors (4bit)
// * 4 pages
- // * 0xB800 screen address
+ // * 0xB8000 screen address
//
// [1] http://www.ctyme.com/intr/rb-0069.htm
mov ax, 0x3
@@ -8475,7 +8475,7 @@ entry_pm32:
// 4 bit bg | 4 bit fg | 8 bit ascii char
//
// Start writing at third line.
- mov edi, 0xb8000 + (80 * 2 * 2) //
+ mov edi, 0xb8000 + (80 * 2 * 2)
lea esi, [msg_pm]
1: