HDL is a Hardware Description Language, a programming language used to design chips. The two major ones are Verilog and VHDL.
0
votes
0answers
8 views
Parameterized net width in Verilog
Is something like this possible ?
parameter width; wire[width-1] a_net = (width)'b0;
I basically need a variable to control the width of the right hand side. I am planning to use this in an test ...
-5
votes
1answer
54 views
Design a 32-bit Arithmetic Logic Unit (ALU) in verilog (using Active-HDL) [closed]
This is a class assignment and I have no idea where to start. I have a 1 bit full adder from a previous assignment but I don't know how to continue from there.
Some references: This is an assignment ...
2
votes
1answer
40 views
How to write an array to text file ?VHDL code
I want to write an image array to text file when i try the result is one column which contain all values.
-2
votes
2answers
35 views
VHDL code for converting floating point to fixed point?
I want to solve equation that have integer & floating point variables so I want to convert from floating point to fixed point .
Can any one help me?
0
votes
2answers
49 views
How to display a 14 bit output onto a 2 digit display?
I have a analogue to digital converter that after conversion stores its results in two 14 bit registers. I have to display this value onto a 2 digit 7 segment display.
Here is the simulation showing ...
1
vote
1answer
63 views
VHDL: Properly clocking another component with respect to setup
I am working on a FPGA project in VHDL.
I need to copy a 16 bit shift register into a FIFO each time it fills up (eg after 16 new data bits have been fed into the shift register, I want to take the ...
0
votes
1answer
80 views
HDL sythesis complains about missing signals in sensitivity list
Hello I've got this simple VHDL process (Generated from MyHDL code):
DIGIPOT_CONTROLLER_CONNECTCLOCK: process (delayedClock) is
begin
if to_boolean(clkEn) then
if to_boolean(delayedClock) ...
1
vote
2answers
70 views
array and multiplexer in Verilog
I am curious to know how an array in synthesized in verilog. Does it creates a MUX of the size of array or something else. Is there some technique to avoid large size MUX synthesize.
1
vote
1answer
63 views
Parallel To Serial HDL
I am making a parallel to serial converter using ring counter in verilog. The ring counter is working fine but the Parallel to serial converter is not working properly and I am getting x undefined ...
0
votes
0answers
70 views
icarus verilog on windows7
I used to work with iverilog on win-xp. But ever since I moved to win7, it does not work. And I am not even using GTK, I just want a plain simulation to run. I have used different versions of iverilog ...
0
votes
1answer
125 views
matlab to vhdl code generation. Function rand is not supported in float to fixed point conversion
I am trying to convert my matlab files to vhdl code.I am using hdl coder for that.During the hdl code generation process,I am getting an error in step:3"generate fixed point code".The error showing is ...
1
vote
1answer
42 views
Simulator showing wrong input
I have written a testbench for a program in verilog. The weird problem is the simulator is showing input completely different compared to the one I have provided as input. Thus the output is also ...
0
votes
1answer
33 views
Cannot find why value doesn't jump to expectation in the right time
I have the following code
module POLY(CLK,RESET_n,IN_VALID,IN,OUT_VALID,OUT);
input CLK,RESET_n,IN_VALID;
input [ 3:0] IN;
output OUT_VALID;
output [12:0] OUT;
reg ...
0
votes
1answer
65 views
uninitialized input signal isim
I am stuck with the following situation
I am designing a vhdl project for uart. There are two components namely uart_rx.vhd and uart_tx.vhd.
I suppose uart_tx goes in Mark state initially upon ...
3
votes
3answers
101 views
Is there any way to create a high level language interpreter implmented in hardware?
Some random thoughts caught me and I just cannot get it out. I am thinking since morden processors are just interpreters for different kinds of assembly languages, is there anyway to create some ...
1
vote
3answers
125 views
Is a <= a + 1 a good practice in VHDL?
If I write the statement to assign a to be a+1 in a VHDL process, is it a good practice?
I am confused about this because the simulator works fine, but when I try to implement it in FPGA the ...
0
votes
1answer
75 views
If there exists two component of same name, one in package and other in architecture, which one is given priority?
I have a VHDL test file a.vhd.
cat a.vhd
package pak is
component b is -- 1st definition of component b.
end component
end pak;
use work.pak.all; -- 1st definition ...
-2
votes
1answer
95 views
Make HTTP Request from Verilog
Is it possible to call a C/C++/Python/Java function that makes an HTTP request inside of a Verilog module?
0
votes
1answer
146 views
vhdl multipliers
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity Lab3_Adder1 is
Port ( cin : in STD_LOGIC;
a : in STD_LOGIC_VECTOR (3 downto 0);
b : in STD_LOGIC_VECTOR (3 downto 0);
...
2
votes
3answers
310 views
Conditional instantiation of verilog module
Is it possible to instantiate a module conditionally in verliog ?
example :
if (en==1)
then module1 instantiation
else
module2 instantiation
0
votes
3answers
716 views
Seven Segment Multiplexing on Basys2
this is my first post so I hope I'm doing this correctly. I'm trying to output a "4 3 2 1" on a four digit seven segment display on a BASYS2 board. I have checked to make sure that 0 enables the ...
0
votes
1answer
48 views
How to determine the number of Logic cells and MLUTS
So from looking at this diagram, I am trying to figure out how these answers came to be? Could someone explain to me?
A) Register R0 to R2 require 32 logic cells total, each cell implement a 3 ...
0
votes
2answers
114 views
How to debug after implementation? My code that works perfectly in simulation shows strange behaviour in hardware
My code for a reaction tester works perfectly and as it should in simulation. But when I move it to my FPGA device it just stalls as soon as I press the start button and I cannot figure out what goes ...
0
votes
2answers
160 views
verilog parameter as input - nios II
I am looking out for a way so that I can send an input value from nios as a parameter to a verilog module.
or
Any other ways of assigning verilog parameter from input.
3
votes
2answers
68 views
My code does not move onto the next state even when the conditions are true
I have to display a message as well as a timer on the 7 segment LED. So I managed this by using a multiplexer and displayed the message "Hi" in one state and then after some time when the counter ...
0
votes
0answers
53 views
Bluespec $display within function
Bluespec complains when I try to use $display within a function definition.
It is only allowed within a rule definition.
Is there a way that I can get to display variable names within a function?
I ...
-1
votes
1answer
227 views
verilog : defining parameter values in case statement?
I need to define parameter values which are dependent on some other input . I tried the following way but it doen't work . any other alternative methods ?
module (...)
...
input sel ;
..
case (sel)
...
-1
votes
1answer
67 views
VHDL Error (Simple Expression Expected)
I'm new to VHDL and I'm having a problem with my code that I can't seem to fix. We're supposed to do this using either selected signal assignment or table lookup. Mine is kind of a combination of the ...
1
vote
1answer
95 views
Trying to build a PC (counter) for the nand2tetris book, but I'm having some trouble with the logic
Here's my code:
CHIP PC {
IN in[16],load,inc,reset;
OUT out[16];
PARTS:
Inc16(in = regout, out = incout);
Mux16(a = regout, b = incout, sel = inc, out = incdecision);
Mux16(a ...
-1
votes
1answer
95 views
Undefined result for Ripple Counter
I am writing a test bench for Ripple counter using d flip flop. My program is compiling without errors, however, I get undefined result. How can I solve this problem?
Here is the code:
module ...
0
votes
2answers
81 views
Illegal reference Error
I am writing a ripple counter using D-Flip Flops. However the following code is giving me Illegal reference error inside initial block for q2,q3,q4variables. Why is that?
module RCounter;
reg ...
3
votes
2answers
154 views
Leading zeros counter
I am implementing a normalization unit for floating point and I want to know how to efficiently implement a leading zeros counter?
I know I can write the following, but I was wondering if there is a ...
0
votes
2answers
109 views
VHDL bit rotation function syntax error?
I am doing this for my school work where I'm making my own rolling/shifting function.
Below is the code I wrote, but when i try to compile it i get syntax error on rownum<=rol(rowcount,1);
library ...
1
vote
3answers
230 views
xilinx VHDL error 827 : Signal <name> cannot be synthesized
I am beginner in VHDL programming and I am trying to synthesize the following vhdl code (software denouncing for a push button) using ISE project navigator 13.1
entity PBdebouncer is
Port ( PB : in ...
1
vote
2answers
273 views
Why are the outputs of this pseudo random number generator (LFSR) so predictable?
Recently I asked here, how to generate random numbers in hardware and was told to use an LFSR. It will be random but will start repeating after a certain value.
The problem is that the random ...
0
votes
1answer
55 views
Data is not picked up from instantiated outputs
I have instantiated a stopwatch module into this multiplexer module. The stopwatch is working as it is supposed to and is producing the expected output. This is also picked up by the instantiated ...
0
votes
1answer
205 views
How do I connect my different Verilog modules?
I'm making a reaction timer. I have made the individual modules before, and now all that remains is to use them collectively.
In other languages they are used as functions that return a value. Here ...
0
votes
1answer
94 views
How to create an executable PrimeTime script?
When creating scripts for Synopsys PrimeTime, the tutorials I have found execute the scripts by loading the tool (pt_shell) then sourcing the script.
To run script:
pt_shell
source power.scr
...
1
vote
2answers
115 views
VHDL wait on multiple signal
signal a:bit:='1'; signal b:bit:='0'; signal c:bit:='0';
begin
process
variable d:bit:='0';
begin
if (a='1')or(b='0') then a <= inertial not d after 1ns;
else a<=inertial not c ...
1
vote
3answers
280 views
How can I create a latch in Verilog
I have a CPLD with a digital input representing a reset button. When the reset button is pressed, the signal goes high. What I need to do is have a register whose value tells if the button has ever ...
0
votes
0answers
111 views
How do I express a boolean expression comprised of AND, OR and NOT using only AND and NOT?
Say I have the following boolean expression:
(A^B^C) v (~A^~C)
How could I express that using only AND (^) and NOT (~)? I don't want the answer, just how I would go about doing it.
0
votes
1answer
352 views
How to implement a (pseudo) hardware random number generator
How do you implement a hardware random number generator in a HDL (verilog)?
What options need to be considered?
0
votes
0answers
39 views
What's wrong with my DMux 4 way?
It's seemingly close to working, it just is messing up at line 7 apparently?
/**
* 4-way demultiplexor.
* {a,b,c,d} = {in,0,0,0} if sel==00
* {0,in,0,0} if sel==01
* ...
0
votes
2answers
285 views
Verilog: Mix of blocking and non-blocking assignments to variable <inc_data_int> is not a recommended coding practice
I have the following Verilog code:
//////////////////////////////////////////////////////////////////////////////
//
// Xilinx, Inc. 2010 www.xilinx.com
//
// XAPP xxx - 1:5 ...
0
votes
2answers
129 views
verilog counter implementation unexpected behaviour
I made a counter in verilog and realized it in hardware. But I am unable to explain the behaviour The code is:
module clock_test(clk_in,led,rst);
input wire clk_in;
input wire rst;
output wire [7:0] ...
2
votes
2answers
108 views
How to choose a random number within a given time?
I want that an LED should turn on at any random time within 15 seconds. For example after pressing a button it should turn on after 4 seconds or 7 seconds, that is randomly.
I came up with the code ...
0
votes
2answers
62 views
else block of if-else acting differently to different conditions
I'm coding a simple shift register using if else block. I noticed that the else block works as it should when the control signal is control = 2'b00 (meaning it retains the default vale) but when I ...
1
vote
2answers
139 views
VHDL character set generation
I need to generate all the possible combinations from a character set.
"abcdefghijklmnopqstuvxyz"
The patterns generated should be outputed like this.
a
b
...
z
aa
ab
...
az
ba
...
This will be ...
1
vote
1answer
343 views
Mod-M counter Unsigned values have no signal
I am writing a RS232 module for my Nexys2 board. I am currently having issues with my baud rate controller which I want to set to 19200.
For this I am using a Mod-M counter, after many ISim ...
1
vote
2answers
127 views
Problems opening files from a VHDL process into an entity instantiated twice: name conflicts
I have an entity in VHDL which has the following structure:
-- Imports...
entity myentity is
port (..specifying in and out signals..);
end myentity;
architecture beh_myentity of myentity is
...