Forum Discussion
Altera_Forum
Honored Contributor
15 years agosigned division
Hi all, I design a piece of hardware using simple division as shown in below: module divider (in1, in2, division, multiply); //parameter parameter DATA_WIDTH = 32; //Input in...
Altera_Forum
Honored Contributor
15 years agoalright, I google the signed type definition and I modify my code from
input [DATA_WIDTH-1:0] in1 ==> input signed [DATA_WIDTH-1:0] in1; Thank you FVM. The next question is : is this signed type definition synthesizable?