Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Is procedural continuous assignment statement synthesizable or not?

Status
Not open for further replies.

ankit12345

Banned
Joined
Dec 27, 2005
Messages
181
Helped
10
Reputation
20
Reaction score
4
Trophy points
1,298
Location
bangalore,India
Activity points
0
I heard that assign using wire is synthesisable..........It?????

Any one tried????
 

Re: Assign in verilog

ankit12345 said:
I heard that assign using wire is synthesisable..........It?????

Any one tried????

Of-course it is, a simple MUX code:

Code:
assign out_val = sel ? in_1 : in_2;

In general assign is a good candidate for simple combinatorial logic description.

HTH
Ajeetha, CVC
www.noveldv.com
 

Assign in verilog

Sorry......the question is wrong.........
Its not what i mean........

I will post the exact question soon
 

Assign in verilog

It is synthesizable, and with "assign" statemetnt, the code is easy to modify and maintain. But some times, it may cause some problems in backend tools.
 

Assign in verilog

My exact ? is weather PROCEDURAL CONTINOUS ASSIGNMENT statement is synthesizable r not???
 

Assign in verilog

yes...i have tried using quatusII for altera...
but you need to know code that can be synthesize...
 

Re: Assign in verilog

ankit12345 said:
My exact ? is weather PROCEDURAL CONTINOUS ASSIGNMENT statement is synthesizable r not???

it depends, "assign" is synthesizable.
procedural-continuous assignment containing event or delay is not synthesizable.
 

Re: Assign in verilog

ankit12345 said:
My exact ? is weather PROCEDURAL CONTINOUS ASSIGNMENT statement is synthesizable r not???

As per IEEE 1364.1, this is NOT synthesizable, may I know where you see a need for it in RTL modeling? I believe it can be worked around.

Ajeetha, CVC
www.noveldv.com
 

Re: Assign in verilog

Hello!
With assign help has possible realize the combinational logic !
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top