Skip to content

Commit

Permalink
fix up a typo of tinyemu part1
Browse files Browse the repository at this point in the history
Signed-off-by: Zhangjin Wu <[email protected]>
  • Loading branch information
lzufalcon committed May 16, 2024
1 parent a26e008 commit 44d3df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-05-17-02-55-02-tinyemu-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void exec_once(CPU *cpu) {
## 总结
本文介绍了模拟器与仿真器的区别,模拟器的指令执行方式以及 TinyEMU 的基本框架,主要包扩监视器、内存、总线、CPU 几大模块。其中监视器负责提供和用户进行交互的命令行,以及提供调试客户程序的功能;内存是一个大数组,存放有要执行的指令;总线是各个模块之间数据传输的通路;CPU 负责处理指令并执行对应的操作。
本文介绍了模拟器与仿真器的区别,模拟器的指令执行方式以及 TinyEMU 的基本框架,主要包括监视器、内存、总线、CPU 几大模块。其中监视器负责提供和用户进行交互的命令行,以及提供调试客户程序的功能;内存是一个大数组,存放有要执行的指令;总线是各个模块之间数据传输的通路;CPU 负责处理指令并执行对应的操作。
下一篇文章将进一步介绍 RISC-V 指令集与 CPU 模块、并在模拟器上运行程序。
Expand Down

0 comments on commit 44d3df6

Please sign in to comment.