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.

ldpc decoder implementation-reg

Status
Not open for further replies.

arunshanmugam46

Junior Member level 2
Joined
Jan 8, 2012
Messages
21
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,422
hi,
i am implementing ldpc decoder using minsum algo in verilog..my doubt is how to use real variables (eg:3.3456) in verilog without using the keyword real..
 

Hi,
'Real' type in Verilog is not synthesizable.
If you really need to handle 'real' values then it is possible to use the IP-Cores that provide functions on 'real' values, for example addition,multiplication, square root,... There are many free IP-Cores for that matter...

The other option is using fixed-point numbers. Verilog can inherently handle fixed-points but it requires a little experience.

using 'real' numbers can add extra overhead in area and time to you project.
Choosing fixed-points, on the other hand, has its own limitations.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top