Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module multiplier #(
- parameter p_width = 4
- ) (
- output wire [((p_width*2)-1):0] o_w_p,
- input wire [(p_width-1):0] i_w_a,
- input wire [(p_width-1):0] i_w_b
- );
- // Implementarea noastra
- endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement