Subject: correction in my earlier email.
From: Krishna Garlapati (krishna@synplicity.com)
Date: Tue Oct 09 2001 - 15:50:32 PDT
I am sorry, I missed the signed keyword in the port list.
Here is the correct testcase:
module top(in, out);
input signed [1:0] in;
output out;
reg out;
always @(in)
begin
case(in)
2: out = 'b0;
default : out = 'b1;
endcase
end
endmodule
Thanks,
- Krishna.
Synplicity Inc.
(408)215-6152
This archive was generated by hypermail 2b28 : Tue Oct 09 2001 - 15:56:44 PDT