Re: [sv-bc] Query related with signedness of variable.

From: Greg Jaxon <Greg.Jaxon@synopsys.com>
Date: Tue Mar 22 2011 - 12:29:45 PDT
On 3/22/2011 8:59 AM, Dhiraj Kumar Prasad wrote:
Hello,

I have a query related with signedness of a variable.

In following example

module test();

typedef struct packed signed {
            bit [1:0] bit1;
}[1:0]S1;
S1 var1;
int i;
initial
begin
    var1[0] = 2'b10;
    i = var1[0];
end
endmodule

Value of i should be 32'b11111111111111111111111111111110 or 
32'b00000000000000000000000000000010.

Value of i should be 32'sb11111111111111111111111111111110
The elements of var1 are packed signed structures.

Different standard simulator are behaving differently.

Should the equivalent of struct be like

typedef bit signed [1:0] b1;
typedef b1[1:0] b2;

or
typedef bit signed [1:0][1:0] b3;
Not sure how you mean "equivalent" here, but b2[0] is signed, whereas b3[0] isn't.

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean. Received on Tue Mar 22 12:30:16 2011

This archive was generated by hypermail 2.1.8 : Tue Mar 22 2011 - 12:30:26 PDT