From ec5cb154e3b107e1e8d4d695bb808b28f42cc88c Mon Sep 17 00:00:00 2001 From: SeddonShen <64512212+SeddonShen@users.noreply.github.com> Date: Thu, 9 Feb 2023 19:54:26 +0800 Subject: [PATCH] Update chisel-book-chinese.tex --- chisel-book-chinese.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chisel-book-chinese.tex b/chisel-book-chinese.tex index 4ba4042c..0d8c010d 100644 --- a/chisel-book-chinese.tex +++ b/chisel-book-chinese.tex @@ -3001,7 +3001,7 @@ \section{Memory} in an FPGA, the synthesize tool will build it out of flip-flops. Therefore, we recommend using \code{SyncReadMem}. -Chisel也提供了\code{Mem},代表了一个具有同步写入和同步读出的存储器。但是这个存储器一般不在FPGA可以使用, +Chisel也提供了\code{Mem},代表了一个具有同步写入和异步读出的存储器。但是这个存储器在FPGA中通常不能直接使用, 综合工具会把它变为触发器。于是,我们推荐使用\code{SyncReadMem}。 \section{Exercise}