Tagged Questions

Verilog is a hardware description language (HDL) used to model electronic systems. It is most commonly used in the design, verification, and implementation of digital logic chips.

learn more… | top users | synonyms

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?
14
votes
1answer
242 views

Better indentation in two-mode-mode in Emacs

I am using Emacs to modify code which is interleaving Perl and Verilog. I am using two-mode-mode to switch between the two, which works as expected. The problem is that the perl code is indicated on a ...
12
votes
6answers
2k views

Microcontroller + Verilog/VHDL simulator?

Over the years I've worked on a number of microcontroller-based projects; mostly with Microchip's PICs. I've used various microcontroller simulators, and while they can be very helpful at times, I ...
10
votes
7answers
943 views

Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL

I have looked on the web and the discussions/examples appear to be for traditional software development. Since Verilog and VHDL (used for chip design, e.g. FPGAs and ASICs) are similar to software ...
10
votes
8answers
3k views

Tool for drawing timing diagrams

Recently as I am working with the hardware design group developing an ASIC. And I am drawing a lot of timing diagrams for which I am using Microsoft EXCEL to draw them, as it is easy to import to word ...
9
votes
7answers
726 views

VHDL/Verilog related programming forums?

Hardware design with VHDL or Verilog is more like programming nowadays. However, I see SO members are not so actively talking about VHDL/Verilog programming. Is there any forum dealing with hardware ...
8
votes
10answers
2k views

What language to learn for microcontroller programming?

I'm getting into microcontroller programming and have been hearing contrasting views. What language is most used in the industry for microcontroller programming? Is this what you use in your own work? ...
7
votes
5answers
266 views

Sharing constants across languages

I have a long list of constants that I need access to in several projects which are in different languages(Verilog, C, C++ and C#). Rather than repeating them in each language, is there a good way to ...
7
votes
4answers
3k views

Verilog automatic task

What does it mean if a task is declared with the automatic keyword in Verilog? task automatic do_things; input [31:0] number_of_things; reg [31:0] tmp_thing; begin // ... end endtask; ...
6
votes
1answer
419 views

Have the errors in “HDL Chip Design” by Douglas Smith ever been corrected?

My copy of "HDL Chip Design" by Douglas Smith is the ninth printing, July 2001. The book systematically makes the error of using blocking assignments for synchronous communication, which results in ...
6
votes
2answers
1k views

How to interpret blocking vs non blocking assignments in Verilog?

I am a little confused about how blocking and non blocking assignments are interpreted when it comes to drawing a hardware diagram. Do we have to infer that a non blocking assignment gives us a ...
6
votes
6answers
4k views

Random number generation on Spartan-3E

I need to generate pseudo-random numbers for my genetic algorithm on a Spartan-3E FPGA and i want to implement it in verilog: could you give me any pointers on this?
6
votes
7answers
2k views

Finding the next in round-robin scheduling by bit twiddling

Consider the following problem. You have a bit-string that represents the current scheduled slave in one-hot encoding. For example, "00000100" (with the leftmost bit being #7 and rightmost #0) means ...
6
votes
7answers
626 views

How to write a linter?

In my day job I, and others on my team write a lot of hardware models in Verilog-AMS, a language supported primarily by commercial vendors and a few opensource simulator projects. One thing that ...
5
votes
2answers
148 views

better way of coding a RAM in Verilog

Which code is better in writing a RAM? assigning data_out inside always block: module memory( output reg [7:0] data_out, input [7:0] address, input [7:0] data_in, input ...
5
votes
1answer
154 views

Specifying variable range in verilog using for loop

I am tying to write this code: for (i = 0; i <= CONST - 1'b1; i = i + 1'b1) begin : loop_inst if (i < 3) begin ...
4
votes
1answer
32 views

Difference between @(posedge Clk); a<= 1'b1; and @(posedge Clk) a<= 1'b1;

Is there any difference between @(posedge Clk); a<= 1'b1; and @(posedge Clk) a<= 1'b1; Note the semicolon after Clk. I came across similar lines of code when I was browsing through ...
4
votes
3answers
94 views

comparing numbers to sort then get median value

Sorting five integers using bitwise or comparison operators can be achieved by first getting the highest number then the second highest then the third and so on. Here is my code in getting the ...
4
votes
2answers
191 views

what is the best way to learn Verilog?

I had finished reading Verilog Quick Start by James Lee. I had also taken a look for the projects at opencores.com, so I decided to plan to design my own CPU for me to practice and I want to make an ...
4
votes
1answer
119 views

Parameterized Bit-fields in verilog

Is it possible to parameterize a bit-field in verilog? Essentially I want to use a parameter or alternative to define a bit-range. The only way I can think of doing this is with a `define as shown ...
4
votes
3answers
1k views

Verilog Always block using (*) symbol

I have a simple question regarding how to write an always block in a verilog module. If I have the following inputs in my Verilog module: input [31:0] PCplus4 ; // Value of PC + 4 ...
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
106 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
6answers
325 views

Why is Verilog not considered a programming language?

In class the professor said that students shouldn't say that they learned to program in Verilog. He said something like Verilog isn't used to program it's used to design. So how is Verilog different ...
4
votes
3answers
483 views

Does anybody have quantitative data on VHDL versus Verilog use?

VHDL and Verilog serve the same purpose, but most engineers favor one of both languages. I want to find out who favors which language. There are dozens of myths and common wisdoms about the ...
4
votes
2answers
3k views

How to declare and use 1D and 2D byte arrays in Verilog?

How to declare and use 1D and 2D byte arrays in Verilog? eg. how to do something like byte a_2D[3][3]; byte a_1D[3]; // using 1D for (int i=0; i< 3; i++) { a_1D[i] = (byte)i; } // using 2D ...
4
votes
6answers
486 views

verilog modelsim fpga

Sorry for Newbish question. I am trying to learn about FPGA programming. Before I spend $1K on a FPGA board: if I just want to learn Verilog, can I run it entirely in Modelsim? (I realize there are ...
4
votes
1answer
5k views

$readmemh $writememh related resources

Suddenly, I am made to look into some verilog testbench code which heavily uses $readmemh, and $writememh. I understood that it basically read to memory and write to memory. I will be happy if you can ...
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 ...
4
votes
2answers
2k views

Passing hierarchy into a Verilog module

I have a "watcher" module that is currently using global hierarchies inside it. I need to instantiate a second instance of this with a second global hierarchy. Currently: module watcher; wire sig = ...
3
votes
3answers
59 views

verilog always, begin and end evaluation

I'm trying to learn Verilog using Pong P. Chu's book. I have a question about how an always block is evaluated and implemented. A style in the authors code is confusing me. In this example he ...
3
votes
1answer
54 views

Alternatives to readmemh in Verilog

I'm trying to load values from a file into a two-dimensional array like this. reg [31:0] RAM[63:0]; initial $readmemh("memory.dat",RAM); What are the alternatives? If I wanted to hardcode ...
3
votes
3answers
88 views

combinatorial hardware multiplication in verilog

Suppose I have a multiplier code like this, module multiply( output [63:0] result, input [31:0] a, input [31:0] b ); assign result = a * b; ...
3
votes
1answer
100 views

size of arithmetic operation result in Verilog

First of all, I am new to Verilog so excuse me if I am not using the right lingo or this seems like an obvious question. I am making a signed comparator in Verilog. Here is the code: module ...
3
votes
1answer
47 views

Is there any special significance of a parenthesis in Verilog when used to wrap a parameter?

I have a piece of Verilog code worked upon by a programmer no longer in the company I work for. An extract is given below: parameter mstrobe = 10; . . . assign #(mstrobe) sclk=iclk; (sclk is a ...
3
votes
1answer
426 views

Verilog Barrel Shifter

I want to create a 64-bit barrel shifter in verilog (rotate right for now). I want to know if there is a way to do it without writing a 65 part case statement? Is there a way to write some simple code ...
3
votes
2answers
275 views

Simple Verilog VPI module to open audio files

I would like to write a VPI/PLI interface which will open audio files (i.e. wav, aiff, etc) and present the data to Verilog simulator. I am using Icarus at the moment and wish to use libsndfile to ...
3
votes
2answers
78 views

Defining a rightrotate function with non-fixed rotation length

I need a rightrotate function in Verilog for 32-Bit inputs, since it is not defined as an operator (x >>> y). It is easy rightrotate such input by hand: wire [31:0] test = 32'd12345; wire [31:0] ...
3
votes
2answers
235 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
1answer
334 views

converting a wire value to an integer in verilog

I want to convert the data in a wire to an integer. For example: wire [2:0] w = 3'b101; I want a method that converts this to '5' and stores it in an integer. How can I do that in a better way than ...
3
votes
4answers
280 views

Right language for hardware modelling

We have been developing "Hardware Models" using C. Our present work-flow: The data-structures in the "hardware model" are made "Bit accurate", and then tested. The "Bit Accurate Hardware model" is ...
3
votes
3answers
888 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
1answer
96 views

Reset an Altera M9K's content to 0 (power-up value)

Good day, I am working on a Stratix III FPGA which contains M9K block memories, the contents of which are conveniently initialised to zero on power-on. This suits my application very well. Is there ...
3
votes
4answers
485 views

Handling parameterization in SystemVerilog packages

SystemVerilog added packages to provide namespaces for common code pieces (functions, types, constants, etc). But since packages are not instantiated, they cannot be parameterized, so dealing with ...
3
votes
8answers
329 views

Why does the chip control the language to choose

I've asked the question before what language should I learn for embedded development. Most embedded engineers said c and c++ are a must, but also pointed out that it depends on the chip. Can someone ...
3
votes
2answers
133 views

Does Verilog support short circuit evaluation?

If I have an if statement like: if(risingEdge && cnt == 3'b111) begin ... end Will it check on cnt if risingEdge is not true? Does this even matter inside of an HDL?
3
votes
1answer
207 views

Complex floating-point sequential logic in Verilog

I'm trying to write a synthesizable 3D rasterizer in Verilog/SystemVerilog. The rasterizer right now is not really a 3D rasterizer: it just receives six 32-bits floats for vertex position ...
3
votes
3answers
481 views

binary number comparison

If I have a 32 bit two's complement number and I want to know what is the easiest way to know of two numbers are equal... what would be the fastest bitwise operator to know this? I know xor'ing both ...
3
votes
1answer
1k views

Load half word and load byte in a single cycle datapath

There was this problem that has been asked about implementing a load byte into a single cycle datapath without having to change the data memory, and the solution was something below. This is ...

1 2 3 4 5