Tagged Questions

SystemVerilog is a combined Hardware Description Language and Hardware Verification Language based on extensions to Verilog.

learn more… | top users | synonyms

9
votes
7answers
732 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 ...
5
votes
1answer
155 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
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
2answers
4k views

packed vs unpacked vectors in system verilog

Looking at some code I'm maintaining in System Verilog I see some signals that are defined like this: node [range_hi:range_lo]x; and others that are defined like this: node y[range_hi:range_lo]; ...
3
votes
2answers
236 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
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
4answers
486 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 ...
2
votes
2answers
59 views

Could we have generate inside an always block?

i want to have sth like this: generate for( i=0 ; i<16 ; i=i+1 ) begin: always @(posedge clk) begin L[i+1] <= #1 R[i]; R[i+1] <= #1 L[i] ^ out[i]; ...
2
votes
3answers
217 views

Is it possible to compile System Verilog functions to C or C++?

I work on a high-level simulator written in C++ for some hardware that is written in System Verilog. The System Verilog code includes a number of functions that contain only logic (that is, nothing ...
2
votes
2answers
278 views

Do any open source, complete system verilog grammars exist?

Are there any grammars for system Verilog that are open source? I'm looking for System Verilog, not plain Verilog grammars.
2
votes
2answers
700 views

why should I use unpacked vectors in System Verilog?

Following up on this question about the difference between packed and unpacked vectors in SV, why would I ever want to use unpacked vectors? Packed vectors have these advantages that unpacked vectors ...
1
vote
1answer
58 views

What is this syntax for in Verilog?

module exmaple(input a, b, input in[2:0], output d, e, output out[5:0]) I am new to Verilog and trying to understand what input in[2:0] means?
1
vote
1answer
86 views

Why is System Verilog $display not executing when I expect it to?

In my bench program, I have something like this (simplified): // bench.sv program tb (input clk, ...); initial begin ... repeat (100) begin main_module_interface.write_index <= ...
1
vote
3answers
318 views

Systemverilog problem with always_comb construct

I have a problem with this Systemverilog code. I'm a newbie in this language and is very dificult to find relevant documentations about this language. Here is the code: module mult ( multiplicand, ...
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
291 views

Find minimum in array of numbers using Verilog for Priority Queue implementation

I'm quite a novice to Verilog, but I have an array of 16-elements (each element is 16-bits long) and I wish to find the minimum entry the array, return the minimum, and re-arrange all the entries in ...
1
vote
1answer
180 views

verilog shift operator basic error

I am trying to compile my program but am getting errors when using the arithmetic right shift operator: ">>>". Here is the code: if (from_id_hmic[117:115]==3'b011) begin ...
1
vote
2answers
94 views

To convert a data coming in 2x to 1x clock in verilog or systemverilog

I am working on validation. I current face a problem of converting a data that is coming to a unit in 2x clock. For a signal of 132 bits it travels as 66 bit bus in 2x clock. At receiving again all ...
1
vote
1answer
102 views

inputs without type in system verilog

I've encountered in an example for a system verilog code decleration of inputs and outputs for a module without stating their type, e.g logic, wire... module mat_to_stream ( input [2:0] [2:0] [2:0] ...
1
vote
1answer
196 views

How can I flush a file buffer in System Verilog?

I want to flush out a file buffer before executing $finish in my simulation. Is there a file flush command that I can use? Or must I simply use $fclose? I realize I can close the file in this ...
1
vote
1answer
590 views

ADDRESS WIDTH from RAM DEPTH

I am implementing a configurable DPRAM where RAM DEPTH is the parameter. How to determine ADDRESS WIDTH from RAM DEPTH? I know the relation RAM DEPTH = 2 ^ (ADDRESS WIDTH) i.e ADDRESS WIDTH = log ...
1
vote
2answers
229 views

does systemverilog support linked lists?

I tried implementing a circular doubly-linked list class (with a single sentinel node) in systemverilog. The list itself seems to work as expected but ends up crashing the simulator (corrupting ...
1
vote
2answers
385 views

Can't make sense of error in System Verilog

I tried to compile code module counter( input clk, input upSignal, input downSignal, output [7:0] count ); always_ff @(posedge clk) begin if (upSignal) ...
1
vote
1answer
411 views

How to change the probability distribution of SystemVerilog random variables?

This is for SystemVerilog. I know you can specify weights for values, or ranges of values, in the set of values that a random variable chooses from, but what if you want a nice Gaussian distribution? ...
1
vote
1answer
263 views

TAP (Test Anything Protocol) module for Verilog or SystemVerilog

Is there a TAP (Test Anything Protocol) implementation for Verilog? It would be nice because then I could use prove to check my results automatically. Update: 10/9/09: It was asked why not use ...
1
vote
3answers
305 views

finding all dependencies in a verilog compile

I'm trying to cheaply and accurately predict all the system-verilog dependencies for a build flow. It is ok to over-predict the dependencies and find a few verilog files that aren't sv dependencies, ...
1
vote
3answers
381 views

Exporting tasks to 'C using DPI

I have an verilog based test-bench, interfaced to 'C source using DPI. Now using DPI I am planning to write my whole firmware. To do this I need 3 things Register Read Register Write Interrupt ...
0
votes
1answer
29 views

Assign ASCII character to wire in Verilog

I understand that you can declare a string in a Verilog test bench as follows: reg [8*14:1] string_value; initial string_value = "Hello, World!"; I can then do things with this string, like ...
0
votes
3answers
237 views

create read/write environment using named pipes

I am using RedHat EL 4. I am using Bash 3.00.15. I am writing SystemVerilog and I want to emulate stdin and stdout. I can only use files as the normal stdin and stdout is not supported in the ...
0
votes
1answer
284 views

random number array in Verilog

I want to test all possible combinations of inputs to a verilog module. I have been able to do generate these inputs by building an array with a nested for loop. However I want to go through the array ...
0
votes
1answer
184 views

srand() analog for SystemVerilog

C rand() and srand() functions is very useful when you doing something like that: srand(SEED); for() { //doing something with one thing using rand() } srand(SEED); for() { //doing something ...
0
votes
3answers
118 views

How can I run/control a Java program from within C?

I am running System Verilog inside of an ASIC simulator. SV has an import/export mechanism to call C functions from SV, and for SV functions to be called from within C. I'd like to send realtime-ish ...
0
votes
3answers
634 views

Assign a value to a reg in Verilog

for (d=k-1;d>0;d=d-1) begin:loop8 input_temp[d][0][m+d-1:0] <= {s_temp[d-1][m+d-2],s_temp[d-1][m+d-2:0]}; input_temp[d][1][m+d-1:0] <= {c_temp[d-1][m+d-2:0],1'b0}; for ...
-1
votes
1answer
120 views

bit vector range selection with runtime value in system verilog

let's say i have a vector value[6:0] and I have an input vector. input[3:0] The problem is I want to set a number of bit in value vector to 1 base on value of input ex: input = 0011 (3 in dec) ...