Tagged Questions
HDL is a Hardware Description Language, a programming language used to design chips. The two major ones are Verilog and VHDL.
18
votes
8answers
2k views
What are the best practices for Hardware Description Languages (Verilog, VHDL etc.)
What best practices should be observed when implementing HDL code?
What are the commonalities and differences when compared to more common software development fields?
5
votes
3answers
92 views
Purpose to providing more than one architecture?
I'm in the process of learning VHDL and I'm trying just learning from examples, syntax guides, and experiments.
One thing I don't quite understand is why you'd ever want to provide more than one ...
4
votes
2answers
104 views
difference between == and ===
What is the difference between:
if (dataoutput[7:0] == 8'bx) begin
and
if (dataoutput[7:0] === 8'bx) begin
After executing dataoutput = 52'bx, the second gives 1, but the first gives 0. Why? (0 ...
4
votes
2answers
107 views
using always@* | meaning and drawbacks
can you say what is the meaning of that
always @ *
Is there any possible side effects after using that statement ?
4
votes
10answers
612 views
Where should I begin with HDLs?
I am a self-taught embedded developer. I mostly use AVRs programmed in C and ASM, but I have dabbled with other systems. I am looking to move onto more complex devices like CPLDs and FPGAs, but I have ...
3
votes
2answers
239 views
What are best practices for optimizing pipeline throughput for fpga implementations?
How does one for example make the best use of retiming and/or c-slow to make the most of a given pipeline.
With retiming, some modules get better results by putting the shift registers on the inputs ...
3
votes
3answers
898 views
Free verilog simulator & compiler
Does anyone know of a free verilog simulators that are available? I already know about GHDL, but I'm taking a course in FPGAs that only uses verilog. I've also already used Modelsim, but I want a ...
3
votes
2answers
2k views
BCD Adder in Verilog
I am trying to write a BCD Adder in Verilog, but I am having trouble with one of the modules. Specifically, the adder that takes two BCD digits and adds them. So, the idea is if the sum of the two ...
3
votes
5answers
1k views
Problem setting output flags for ALU in “Nand to Tetris” course
Although I tagged this homework, it is actually for a course which I am doing on my own for free. Anyway, the course is called "From Nand to Tetris" and I'm hoping someone here has seen or taken the ...
2
votes
2answers
102 views
how can i know if my code is Synthesizable? [Verilog]
In designing a circuit in verilog using top-down method, I can start from the behavior of a circuit followed by defining the details in every module to construct a structural circuit that is ...
2
votes
2answers
337 views
not a valid l-value - verilog compiler error
module fronter ( arc, length, clinic ) ;
input [7:0] arc;
output reg [7:0] length ;
input [1:0] clinic;
input en0, en1, en2, en3; // 11
// clock generator is here
g_cal A( en0) ;
g_cal B( ...
2
votes
1answer
200 views
Driving bidirectional lines in Verilog
this question probably wont be explained very well and that's because I don't really understand what's happening in my design.
I need to use an I2C communication bus to talk to a camera (Terasic D5M) ...
2
votes
2answers
171 views
Simulation vs hardware mismatch
I have a very simple problem but I do not get my head around what is going wrong.
Essentially, the whole thing works fine when simulating it, however, having it
in hardware gives me the wrong result. ...
2
votes
3answers
387 views
Verilog linting tools?
What are some good linting tools for verilog? I'd prefer one that can be configured to either handle or ignore certain vendor specific primitives like LUT's, PLL's, etc.
I recently tried ...
2
votes
1answer
248 views
Open Source OCR system for FPGA
Do you know of any open source (open core) implementations of an OCR for FPGA either in C or in HDL? Where can I find them?
Thanks
2
votes
1answer
217 views
Holistic Word Recognition algorithm in detail
Where Can I find algorithm details for holistic word recognition? I need to build a simple OCR system in hardware (FPGAs actually), and the scientific journals seems so abstract?
Are there any open ...
2
votes
3answers
5k views
How do I convert a number to two's complement in verilog?
I am trying to design a 4-bit adder subtracter in verilog. This is only the second thing I have ever written in verilog, and I don't know all the correct syntax yet. This is the module I have so far:
...
1
vote
1answer
86 views
Converting a wire value in Verilog for further processing
I'm new to Verilog.
I have written code to convert a wire value to an integer:
wire [31:0] w1;
integer k;
always @ (w1) k = w1;
Source: converting a wire value to an integer in verilog
Now, for ...
1
vote
2answers
226 views
Waiting posedge clk before doing a job? — How
module DoorControl( clk, data, open,addressOftheMemory, outp );
localparam Size_ofTheWord = 32;
input open;
input [16:0] addressOftheMemory;
input [Size_ofTheWord-1:0] data;
input clk ;
output reg ...
1
vote
2answers
144 views
How to use const in verilog
Instead of using
module ... ( .. ) ;
#15
endmodule
I want use
module ... ( ... ) ;
// GateDelay is a const, like in c language const int GateDelay = 15 ;
# GateDelay
endmodule
...
1
vote
2answers
100 views
? time delay, when using === or <=
When we use
input reg [7:0] ast, f_out;
ast === f_out ;
ast <= ast + 8'b00000001;
for those operations " === and <= ", Have any time delay been occurred ?
EDIT: I think something small ...
1
vote
2answers
112 views
minimization of program segment - if, else
X, Y, Z, T are different jobs. Ex, X = Multiplexer( ... )
if ( empty1 )
if ( empty2 )
if ( empty3 )
if ( empty4 )
// Do nothing
else
X
...
1
vote
2answers
105 views
What are the requirements to meet in order to ISE auto infer ram blocks?
I have this piece of IP that is supposed to be a 32 bits byte addressable memory. But I can't make it infer block rams, it is inferring a huge amount of flip flops...
It is supposed to fit on a ...
1
vote
2answers
566 views
Reading an image to FPGA from PC and Back
I need to read a small image (tif format) from PC to FPGA kit (ALTERA DE2-70) for processing, then write it back to PC. I have no idea how to do it in Verilog?
Can it be done in C? if so, how can I ...
1
vote
1answer
102 views
How do I Generate a List of Connections Between VHDL Blocks?
I want to generate a list of all the signal connections between high-level VHDL blocks in a VHDL file.
For example, this is what Quartus' RTL viewer does, but graphically.
I want my results to be ...
1
vote
1answer
133 views
In Specman, why is my macro label for the code body returning garbage?
Similar to this post
http://feedproxy.google.com/~r/cadence/community/blogs/fv/~3/IvdCIla8_Es/extending-multiple-when-subtypes-simultaneously.aspx
I want to make a macro that does loop unrolling to ...
1
vote
1answer
225 views
Can Verilog testbenches work with a real clock?
I wrote a counter in Verilog, and then a testbench to test it. My testbench gives the correct results, so my code is OK. But is it gives the result of a long time instantly.
Is it possible to take ...
1
vote
1answer
403 views
How to synthesis verilog cores made in xilinx core generator?
I used coregen to develop a divider core. Here are the steps I tried to use that divider in my design (not sure if its quite correct):
1) copied wrapper (core_name.v), .ngc file, and .veo file into ...
1
vote
2answers
233 views
Can dynamically pluggable modules be done in VHDL?
In c (embedded) a plugin can be implemented by defining a function pointer table and an address range that the module can be loaded into.
This requires linker directive to allocate the space and ...
0
votes
2answers
32 views
SystemC error, using visual c++ 2008
I am using systemC with visual C++ 2008. I wrote a simple hello world program. However I am getting this error repeatedly:
warning C4996: 'sprintf': This function or variable may be unsafe.
Why ...
0
votes
1answer
73 views
how to view memory waveform?
I can't view memory using gtkwave:
module internal_memory(
output [31:0] hrdata,
input mem_enable,
input [31:0] haddr,
input [31:0] hwdata,
input hwrite,
...
0
votes
3answers
237 views
Accessing Verilog genvar generated instances in simulation code
This is a Verilog releated question. I am working with XILINX ISE as a dev environment.
I am trying to access variables in the simulation that are automatically generated using genvar but I am ...
0
votes
1answer
100 views
Changing user_logic.v for my program
I just made a custom IP in Xilinx it generated a user_logic file which i required in Verilog, but i am having problems changing the code.
What i require is implement that data comes to FSL some ...
0
votes
2answers
244 views
Syntax error in VHDL
I am trying to implement a one bit counter using structural VHDL and components.
I am getting a syntax error when trying to do the port map.
The error is "Error (10028): Can't resolve multiple ...
0
votes
3answers
408 views
Passing Variables to procedure in VHDL
I have the following simple procedure adding two numbers:
procedure add_elements
(
x : in std_logic_vector(31 downto 0);
y : in std_logic_vector(31 downto 0);
r : out ...
0
votes
2answers
104 views
Preserving the widths of ports
I am trying to re-use netlists in other designs without the success.
I have a component which is translated to the netlist:
entity c is
port (... sel : in std_logic_vector(31 downto 0); ... ...
0
votes
3answers
429 views
Universal shift arithmetic right in VHDL
I am designing universal shift arithmetic operator.
Is there a better way to achieve it besides using the 32bit multiplexer (decoder) in a way presented bellow?
ENTITY isra IS
PORT (
clk: in ...
0
votes
2answers
416 views
Verilog code simulates but does not run as predicted on FPGA
I did a behavioral simulation of my code, and it works perfectly. The results are as predicted. When I synthesize my code and upload it to a spartan 3e FPGA and try to analyze using chipscope, the ...
0
votes
2answers
906 views
Assigning wires deep in a nested set of modules
I have a wire that is about 4 levels deep and I really don't want the hassle of having to propagate it up the hierarchy. Is there any way to assign the wire using some sort of referencing? I know I ...
-1
votes
1answer
178 views
Design of “simple” VHDL module still drives me mad
Thanks to all your input, I implemented your suggestions, however the problem remains the same. The result in simulation works fine, but the hardware
outputs something different. Just to briefly ...