From c1645ed6ffbe23d591e93dcd37ee9dfa8ced3b7e Mon Sep 17 00:00:00 2001 From: Ghifari160 Date: Fri, 2 Mar 2018 22:31:30 -0600 Subject: [PATCH 1/2] Fixed typo in README.md 'xdd' should be 'xxd' --- 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 7f00d38..5292d66 100644 --- a/12-kernel-c/README.md +++ b/12-kernel-c/README.md @@ -37,7 +37,7 @@ generates machine code without any labels and/or metadata *Note: a warning may appear when linking, disregard it* -Now examine both "binary" files, `function.o` and `function.bin` using `xdd`. You +Now examine both "binary" files, `function.o` and `function.bin` using `xxd`. You will see that the `.bin` file is machine code, while the `.o` file has a lot of debugging information, labels, etc. From 4399a080248bc50cca9bf2e02808a33eac57db12 Mon Sep 17 00:00:00 2001 From: Ghifari160 Date: Tue, 3 Apr 2018 16:51:57 -0500 Subject: [PATCH 2/2] Updated link to GDB --- 14-checkpoint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14-checkpoint/README.md b/14-checkpoint/README.md index 6af38f6..8d9958e 100644 --- a/14-checkpoint/README.md +++ b/14-checkpoint/README.md @@ -20,7 +20,7 @@ on Homebrew's repos) ```sh cd /tmp/src -curl -O http://ftp.rediris.es/mirror/GNU/gnu/gdb/gdb-7.8.tar.gz +curl -O http://ftp.rediris.es/mirror/GNU/gdb/gdb-7.8.tar.gz tar xf gdb-7.8.tar.gz mkdir gdb-build cd gdb-build