Prev Problem
Next Problem

45. Signed vs Unsigned Compare

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

/*Write your code here*/
module signed_thresh
(
    input wire [7:0] sample,thresh,
    output wire gt_signed,gt_unsigned
);
    wire t0,t1;
    assign gt_unsigned = sample > thresh ? 1 : 0;
    //assign t0 = sample > 0 ? sample : -sample; 
    //assign t1 = thresh > 0 ? thresh : -thresh;
    //assign gt_signed = t0 > t1 ?  1 : 0;
    assign gt_signed = $signed(sample) > $signed(thresh) ? 1 : 0;
endmodule

 

Was this helpful?
Upvote
Downvote