如何在 Verilog 中连接两个模块?

发布于 2024-08-10 09:57:54 字数 59 浏览 5 评论 0原文

我已经编写了两个模块 DLatch 和 RSLatch,我想编写 verilog 代码来连接这两个模块。

I have written two modules DLatch and RSLatch and i want to write verilog code to join those two.

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

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

发布评论

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

评论(3

当爱已成负担 2024-08-17 09:57:54

说真的,您应该给自己买一本 Verilog 手册或搜索一些在线资源。

无论如何,这样的事情应该有效:

module dff (
    input Clk,
    input D,
    output Q,
    output Qbar
  );

  wire q_to_s;
  wire qbar_to_r;
  wire clk_bar;

  assign clk_bar = ~Clk;

  D_latch dlatch (
    .D(D),
    .Clk(Clk),
    .Q(q_to_s),
    .Qbar(qbar_to_r)
  );

  RS_latch rslatch (
    .S(q_to_s),
    .R(qbar_to_r),
    .Clk(clk_bar),
    .Qa(Q),
    .Qb(Qbar)
  );

endmodule

Seriously, you should get yourself a Verilog handbook or search for some online resources.

Anyway, something like this should work:

module dff (
    input Clk,
    input D,
    output Q,
    output Qbar
  );

  wire q_to_s;
  wire qbar_to_r;
  wire clk_bar;

  assign clk_bar = ~Clk;

  D_latch dlatch (
    .D(D),
    .Clk(Clk),
    .Q(q_to_s),
    .Qbar(qbar_to_r)
  );

  RS_latch rslatch (
    .S(q_to_s),
    .R(qbar_to_r),
    .Clk(clk_bar),
    .Qa(Q),
    .Qb(Qbar)
  );

endmodule
唯憾梦倾城 2024-08-17 09:57:54

您可能需要查看 Emacs AUTOWIRE

You might want to look into Emacs AUTOWIRE

耀眼的星火 2024-08-17 09:57:54

您将需要创建一个外部模块,其端口如原理图所示(D、Clk、Q、NQ)。在该模块内,您实例化两个子模块 DLatch 和 RSLatch,并适当地连接端口。 (您需要为内部互连声明额外的电线。)

You will need to create an outer module, with the ports as shown in your schematic (D, Clk, Q, NQ). Inside this module you instantiate the two submodules DLatch and RSLatch, and wire the ports appropriately. (You will need to declare extra wires for the internal interconnects.)

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