不枉初心,砥砺前行

皮皮祥的博客

欢迎留言,评论

导航

n位乘加器(先乘后加)

设计n位乘加器(先乘后加)Design a n-bit multiplier (firstly multiply and then add)

 
  1. module MAC_N
  2. #(
  3. parameter N = 16
  4. )
  5. (
  6. input [N - 1: 0 ] A,
  7. input [N - 1: 0 ] B,
  8. input [N - 1: 0 ] C,
  9. output [2*N - 1 : 0] R
  10. );
  11. assign R = A * B + C;
  12. endmodule

posted on 2022-05-12 19:55  皮皮祥  阅读(47)  评论(0编辑  收藏  举报