Advertisement
aidanozo

Untitled

Nov 13th, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module alu #(
  2.     parameter p_data_width = 5,
  3.     parameter p_flags_width = 5
  4. )(
  5.     output wire [(p_data_width-1):0] o_w_out,
  6.     output wire [(p_flags_width-1):0] o_w_flags,
  7.     input wire [(p_data_width-1):0] i_w_op1,
  8.     input wire [(p_data_width-1):0] i_w_op2,
  9.     input wire [3:0] i_w_opcode,
  10.     input wire i_w_carry,
  11.     input wire i_w_oe
  12. );
  13.  
  14. // Implementarea noastra
  15.  
  16. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement