Skip to content

Commit

Permalink
Fix #17 and Resolve #16
Browse files Browse the repository at this point in the history
  • Loading branch information
liukangxu committed Mar 15, 2017
1 parent 1faedc5 commit dcd3355
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guide-book/chapters/1-start.tex
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ \section{实战printf}
而C语言的标准库是建立在操作系统基础之上的。所以,当我们开发操作系统的时候,我们就会发现,我们失去了C语言标准库的支持。
我们需要用到的几乎所有东西,都需要我们自己来实现。

要弄懂系统如何将一个字符输出到终端当中,需要阅读以下三个文件:lib/printf.c,lib/print.c和driver/gxemul/console.c。
要弄懂系统如何将一个字符输出到终端当中,需要阅读以下三个文件:lib/printf.c,lib/print.c和drivers/gxconsole/console.c。
相信阅读这些代码对于聪明的你来说,完全不是问题,我们就不再赘述了。

\begin{exercise}
Expand Down
2 changes: 1 addition & 1 deletion guide-book/chapters/3-process.tex
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ \subsection{进程调度}
\section{实验正确结果}
如果你按流程做下来并且做的结果正确的话,你运行之后应该会出现这样的结果

\begin{minted}[linenos]{c}
\begin{minted}[linenos]{text}
init.c: mips_init() is called

Physical memory: 65536K available, base = 65536K, extended = 0K
Expand Down

0 comments on commit dcd3355

Please sign in to comment.