VHDL (VHSIC Hardware Description Language) is a language used in electronic design to describe digital systems such as field-programmable gate arrays and integrated circuits.
0
votes
0answers
27 views
8 bit shift register using 2 4 bit registers
I have been struggling trying to make my 8 bit shift register work. The register uses 2 port map of two positive level triggered 4 bit shift registers interconnected together as shown below:
step0: ...
0
votes
1answer
11 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 ...
0
votes
1answer
54 views
What is wrong with this design
I have some VHDL code which behaves strangely when synthesized, but I suspect it is my basic understanding of VHDL synthesis which is wrong.
"sync" is a short pulse (about half a clk period), which ...
-2
votes
1answer
43 views
convert matlab m file into vhdl
Iam trying to convert .m file of matlab into vhdl code. I know this topic has been discussed over the help forums, but still the literature did not proved to be fruitful.
Kindly can anyone help in ...
2
votes
1answer
24 views
Verilog instantiation error
I'm having an issue simply calling a module for a JK flip flop. Our project is to make a state machine, and My logic is correct, but i'm getting an error that says
"VHDL module instantiation error: ...
0
votes
1answer
24 views
Error with synplify pro
I get the following error in synplify pro E 2010.09 SP2 when I try to compile the code below. Any ideas? Thanks a lot
/opt/eds/synplicity/fpga_e201009sp2/lib/vhd/numeric.vhd":1:0:1:100|No Entities ...
-2
votes
0answers
42 views
how to count leading 0 in vector
back:while (sub1_mantissa(52)='0') loop
sub1_mantissa := sub1_mantissa(51 downto 0) & '0';
count := count + "000000000001";
end loop back;
hi .i want to count leading zeros in ...
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.
1
vote
1answer
45 views
compare two clock signals
we are designing a robot for my university project with a group, we are first year electrical engineering students. the robot has to detect mines with a simple LC oscillator en comparator. the output ...
-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?
2
votes
1answer
20 views
Warning: Design contains 1 high-fanout nets. A fanout number of 1000 will be used for delay calculations involving these nets. (TIM-134)
I'm having this warning while syn. a vhdl code with synopsys design compiler.
How can I eliminate this warning ?
-1
votes
1answer
16 views
Getting wrong results in post synthesis simulation
I am writing a code for Matrix Transpose in VHDL i am taking input in row major and one element of matrix per every clock cycle and i store the data in column major format after that i send tha data ...
1
vote
2answers
30 views
what is the difference between the following to coding in VHDL to update registers?
Could I ask what is the difference between the following two coding styles? For the first one I read from XILINX sample code. For the second, I read it from a book teaching VHDL.
1. signal: register ...
0
votes
1answer
24 views
post gate level simulation in modelsim
I'm trying to make a post gate level simulation for a pipelined processor.
I have the net list in vhdl format and I need now to simulate it again to be sure the functionality is right after the ...
0
votes
3answers
64 views
Infinite amount of time when trying to synthesize behavioral VHDL code with divider
I have a difficult question for "strong" solvers :
I am trying to synthesize the VHDL behavioral code which is shown at the end of this question.
When I used the line
m1Low := m1Low/m0Low;
the ...
0
votes
1answer
30 views
Initializing memory in netlist VHDL
After synthesizing a processor code using Synopsis DC tool
Now I want to initialize 2 rams included in 2 components in this design using .mem files
how do I achieve that using the netlist file I ...
2
votes
2answers
42 views
How to typecast integer to unsigned in VHDL
I am trying to divide two integers as following:
variable m0Low : integer := 0;
variable m1Low : integer := 0;
m1Low := divide(m1Low,m0Low);
With the function :
function divide (a : UNSIGNED; b ...
2
votes
2answers
46 views
VHDL / How to initialize my signal?
I'm a beginner in VHDL and I have a basic question.
Let's consider this following input :
A : in std_logic_vector(22 downto 0);
And this signal :
signal dummyA : std_logic_vector(47 downto 0);
...
1
vote
1answer
36 views
Synplify prunes my register when I use to_integer to access a Constant Array. (VHDL)
Data_Out_SDa : process (SCl, IntReset) is
variable IntSDa : std_logic; -- Internal Sda
begin -- process Data_Out_SDa
if IntReset = '0' then -- ...
2
votes
1answer
45 views
FSM machine in VHDL with each state DOING CERTAIN OPERATIONS
I have a FSM with five states (s1, s2, s3, s4, s5).
However, for each state, a sequence of operations should be done. For example, in s2, a counter should count from 1 to 10.
Here comes my question: ...
1
vote
1answer
23 views
ModelSim VHDL real simulation time estimation
sirs
I have a problem to resolve urgently. That is I want to get the VHDL simulation time of a model with a testbench. I work in ModelSim and know that the profiler of ModelSim supports performance ...
0
votes
1answer
32 views
Run and increment a counter in VHDL
I need to design VHDL to run a counter on a seven segment display. The three inputs are start, stop, and increment based on three pushbuttons. Start will start the counter and it won't stop until the ...
-7
votes
0answers
41 views
3*8 Decoder IC 74LS138 VDHL Modeling [closed]
my prof. told to us make that using srl.
plz help TT
< 3*8 Decoder IC 74LS138 Truth table>
|In put |Out put
G1 bar{G2A} bar{G2B} |A2 A1 A0 |Y0 Y1 Y2 Y3 Y4 Y5 Y6 Y7
0 ...
5
votes
4answers
110 views
In VHDL … how to count leading zeros of vector?
I'm working in a VHDL project and I'm facing a problem to calculate the length of vector. I know there is length attribute of a vector but this not the length I'm looking for. For example, I have ...
0
votes
1answer
20 views
ghdl does not produce binaries (windows)
Hy,
I'm using ghdl for my studies since couple of months. now i was forced to use windows and tried to use ghdl and gtkwave there also.
My problem is: After i've installed ghdl i tried to compile ...
-1
votes
1answer
84 views
7-segment display in VHDL?
So I'm currently writing VHDL code for a 7-segment display that will display (0-F) once each second. I have almost everything done, the only thing I'm stuck on is the controller.
I need to have 4 ...
1
vote
1answer
30 views
Top module VHDL with no inputs and outputs
I have two files, master.vhd and slave.vhd, both synthetize without errors or warnings. I want to create a structural top module and connect them. I'm using Xilinx ISE 14.2.
My top.vhd file looks ...
0
votes
1answer
52 views
Conversion from Systemc to VHDL or VERILOG
I designed a circuit using RTL SystemC library. This circuit works fine and i can simulate it properly. Now i want to deploy it into an FPGA and i'm looking for a way to convert my systemc code into ...
0
votes
0answers
20 views
Configuring an RS232 to USB cable with VHDL
i'm in the process of configuring an RS232 to USB cable with VHDL and i seem to have a problem. I don't know how to configure a dual-port RAM. I have attempted searching on answers to that and i found ...
0
votes
2answers
65 views
GHDL 0.29 for Windows hangs if the number of statements in a process is even
I'm using GHDL 0.29 for Windows.
The following program prints "Hello world!"
use std.textio.all;
entity hello_world is
end hello_world;
architecture behaviour of hello_world is
begin
...
1
vote
3answers
56 views
How to align certain text in emacs vhdl-mode
In Emacs how would I align a group of text:
signal slv4 : std_logic_vector(3 downto 0);
signal slv16 : std_logic_vector(15 downto 0);
signal slv8 : std_logic_vector(7 downto 0);
signal slv32 : ...
2
votes
2answers
62 views
Generate random values in VHDL function
I have a design were I'm writing/reading to/from a RAM and perform some computation on the read values. In some cases, I read values from RAM locations where I haven't written anything to yet. This is ...
0
votes
0answers
54 views
NAND basic cell using structural vhdl
I have a problem designing memory circuits in VHDL. I am trying to figure out a soultion to the following prompt:
Create a NAND basic cell in the Xilinx tools using structural VHDL methods. Add a 1ns ...
2
votes
2answers
54 views
vhdl compare new input with old input
how do you do it?
I am very new to this and I am sure this is easy enough but i can't seem to figure out how
here is some pseudo code
port(x,y: in std_logic_vector (2 downto 0) -- 3 bit input that ...
-1
votes
0answers
39 views
how to make a vending machine using adder in vhdl [closed]
How can I make a code for a vending machine in vhdl (using 4-bit adder) which have the following proprieties :
allowed Coins :
1 NIS, 2 NIS, 5 NIS .. the machine has only Soda which costs 3 NIS . ...
0
votes
0answers
30 views
How to run VHDL code on Altera DE2? [closed]
I am newbie in FPGA, but all last mounth I try understand how it works :) I am create some simple projects like calculator or binary clock on Altera DE2 by whatching some video lessons. And now i ...
0
votes
3answers
67 views
FIFO with 2 clocks in VHDL
I have a problem with a vhdl assignment. I need to create a FIFO buffer between a bus of 500MHz and another bus of 30MHz.
I have designed a basic FIFO buffer with
inputs: Data_in, Write_EN, ...
0
votes
0answers
62 views
How to convert fixed-point VHDL type back to float?
I am using IEEE fixed point package in VHDL.
It works well, but I now facing a problem concerning their string representation in a test bench : I would like to dump them in a text file.
I have ...
0
votes
2answers
57 views
Reading from FTDI sync FT245 FIFO returns zero bytes
Hello I am developing simple DSO and I have problem with FT245 sync FIFO.
Reading from FT245 works normally when I read 4byte acknowledges, but when I want to retrieve sampled data it returns zero ...
0
votes
1answer
55 views
Communication between processes in VHDL
I have problems on communicating between the processes. I used to use flag and clearFlag to tackle this, but it's kind of annoying and not looking good. What is the best practice to handle this? Here ...
1
vote
2answers
30 views
Run multiple processes in VHDL
I am trying to simulate a microprocessor in VHDL as part of an assignment. Its a very basic model and doesn't even need to include all the opcodes. I would like to get around the following problem.
I ...
1
vote
1answer
40 views
Concurrent If Statements in VHDL
I am writing code for comparing a signal to a number of signals at the same time.
Here is the example:
process (CLK, reset)
if reset = '0' then
data <= (others => '0');
elsif rising_edge ...
3
votes
1answer
37 views
What does `&` operator do to a standard logic vector?
I'm looking at some code that does the following:
signal1 : std_logic
vector1 : std_logic_vector
vector1 <= vector1(20 downto 1) & signal1;
I assume that a vector1(20 downto 1) produces the ...
2
votes
2answers
94 views
simple C++ wrapper for VHDL DFF code
I want to know, how can I write a C++ wrapper for a simple VHDL D-flip-flop code. The code can be as follows:
entity DFF is
Port ( D : in std_logic;
CLK : in std_logic := '0';
...
1
vote
1answer
69 views
Generic Records (vhdl2008)
I am striving to implement an entity whose ports depend on a generic package, which in turn depends in the generics of the entity. The trick is that I want to have a record for the ports.
At first I ...
1
vote
3answers
89 views
XOR using a 4:1 Mux in VHDL
I need to create XOR with 4:1 Mux (I know that it's easier without a Mux...)
I found this useful example for 4:1
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity multiplexer4_1 is
port (
i0 ...
0
votes
2answers
47 views
discrete cosine transform using VHDL
Am working on discrete cosine transform using VHDL. Am trying to convert the VHDL code from integer to standard logic vector. I applied some of the techniques i read online and from textbooks but it ...
0
votes
2answers
60 views
cyclically 8 bit shifter ,VHDL
I have the following problem: I have to implement 8 bit left shifter that makes one shift to left, the code of it is:
entity left_shift is
generic ( N: integer := 8);
Port(
Databitsin : in ...
1
vote
2answers
76 views
Power function in vhdl
I want to make power function using vhdl where the power is floating number and the number is integer (will be always "2").
2^ some floating number.
I use ieee library and (fixed_float_types.all, ...
0
votes
1answer
58 views
VHDL FSM set unit input and use output in same state
I am implementing a Mealy-type FSM in vhdl. I currently am using double process, although i've just read a single-process might be neater. Consider that a parameter of your answer.
The short version ...

