6
votes
7answers
170 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 si …
0
votes
2answers
44 views
Wiring two modules in Verilog
I have written two modules DLatch and RSLatch and i want to write verilog code to join those two to match the diagram here: (
http://img130.imageshack.us/i/mod.tif/
However i d …
6
votes
7answers
170 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 ea …
1
vote
3answers
138 views
Verilog: Can you put “assign” statements within always@ or begin/end statements?
Is this allowed?
input w;
input [8:0]y;
output reg [8:0]x;
always@(w)
begin
//x[0] or A is never on in any next state
assign x[0] = 0;
as …
0
votes
2answers
31 views
Single Input to Array of Custom Modules in Verilog
So I have an array of 4 RAM modules that I want to be able to read/write to based on two different selector signals. Right now I'm instantiating the RAM using intermediary signals: …
0
votes
1answer
90 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 ask …
1
vote
2answers
68 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 …
1
vote
2answers
85 views
compute results and mux or not
Using pseudo code here. Are there pros and cons to these styles:
Say you have an alu that can do add, and, or and xor. Is it better to have code that computes the possible answe …
2
votes
6answers
632 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?
0
votes
2answers
111 views
VERILOG : Can we have an array of custom modules ??
Can we have an array of instances for a custom module.
eg :
we can have -> input [15:0] a; this creates a bus
can we do same thing for custom modules -> DFF [15:0] d; where D …
3
votes
6answers
342 views
Is there a Perl tutorial for Verilog engineers?
I want to start studying Perl, specifically for checking verilog output files. Is there some tutorial that is specific to say Perl for Verilog engineers or something like that?
1
vote
4answers
360 views
verilog or systemc for testbench
I am assigned with the task of verifying some verilog based RTL code. Now, coding the RTL testbench using verilog seems to be very difficult (for me). So I would like to try one of …
0
votes
2answers
374 views
task in verilog
Hello
I am trying to write a task that gives a variable paddr diffrent values:
module paddr1 ;
task paddr1;
input [10:0]paddr;
input clock;
@(posedge clock)
begin
paddr=10
#100; …
0
votes
3answers
111 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 W …
4
votes
9answers
410 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 a …
