URL
https://opencores.org/ocsvn/zet86/zet86/trunk
Subversion Repositories zet86
[/] [zet86/] [trunk/] [sim/] [signmul17.v] - Rev 53
Go to most recent revision | Compare with Previous | Blame | View Log
module signmul17 ( input clk, input signed [16:0] a, input signed [16:0] b, output reg signed [33:0] p ); // Behaviour always @(posedge clk) p <= a * b; endmodule
Go to most recent revision | Compare with Previous | Blame | View Log