From 911b9ac1abc24828e0d929a3bb30a5f1a2542b28 Mon Sep 17 00:00:00 2001 From: Sohaib Mohammed Date: Mon, 27 Jan 2020 13:14:34 +0200 Subject: [PATCH] Fixed typo in README.md 'os-guide.pdf' should be 'os-dev.pdf', i think. https://github.com/cfenollosa/os-tutorial/search?q=os-dev.pdf&unscoped_q=os-dev.pdf --- 12-kernel-c/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12-kernel-c/README.md b/12-kernel-c/README.md index 5292d66..e43e788 100644 --- a/12-kernel-c/README.md +++ b/12-kernel-c/README.md @@ -60,6 +60,6 @@ I encourage you to write more small programs, which feature: - Pointers `pointers.c` Then compile and disassemble them, and examine the resulting machine code. Follow -the os-guide.pdf for explanations. Try to answer this question: why does the +the os-dev.pdf for explanations. Try to answer this question: why does the disassemblement of `pointers.c` not resemble what you would expect? Where is the ASCII `0x48656c6c6f` for "Hello"?