需要帮助阅读图表

发布于 2024-12-04 16:17:45 字数 198 浏览 1 评论 0原文

我试图理解MIPS(单周期数据路径)中的寄存器写入操作的图表。我不明白为什么我们需要将解码器的输出与写入启用信号进行AND操作?我不知道它将如何启用特定寄存器。请帮我解决一下。 在此处输入图像描述 谢谢。

I am trying to understand the diagram for register write operation in MIPS(Single Cycle Data Path). I do not get why do we need to AND the output of the decoder to the write enable signal? I am not getting how would it enable the specific register. Please help me out with it.
enter image description here
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金兰素衣 2024-12-11 16:17:46

图中有几个不一致的地方。 “n-to-2^n”解码器应该有n输入和 2^n 输出。对于这样的解码器,寄存器的数量应该是2^n

解码器输入指定要写入的地址(即寄存器)。对于任何 2^n 可能的寄存器编号,解码器的相应输出将设置为 1,所有其他输出设置为 0 >。

“写”信号可能是由时钟驱动的。

AND 门的目的是使“写”信号传播到正确的寄存器(只有一个!)寄存器是通过输入解码器的地址来选择的,如上所述。

选定的寄存器将锁存到“寄存器数据”,最有可能在时钟的上升沿。所有剩余的寄存器将保持其当前值,因为它们的 C 输入始终保持为 0

There are several inconsistencies in the diagram. The "n-to-2^n" decoder should have n inputs and 2^n outputs. With such a decoder, the number of registers should be 2^n.

The decoder inputs specify the address (i.e. the register) to be written to. For any of the 2^n possible register numbers, the corresponding output of the decoder will be set to 1, with all other outputs set to 0.

The "write" signal is probably driven off a clock.

The purpose of the AND gates is to make the "write" signal propagate to the correct register (just the one!) The register is chosen by the address fed into the decoder, as described above.

The selected register will latch onto the "register data", most probably on the rising edge of the clock. All the remaining registers will keep their present values, since their C inputs will remain at 0 throughout.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文