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 [7:0] sample,thresh,
    output gt_unsigned , gt_signed
);

    assign gt_unsigned = sample>thresh?1:0;

    assign gt_signed = ((~sample[7])&(thresh[7]))?1:((sample[7])&(~thresh[7]))?0:gt_unsigned;
endmodule

 

Was this helpful?
Upvote
Downvote