0
votes
2answers
32 views
[VHDL] How to generate serial signal from string?
How do I send data represented by a binary string (e.g. "01011101000100111", length is variable) to an std_logic signal given either fixed delay or clock signal? I want this for a testbench so I'd …
0
votes
2answers
29 views
VHDL - When does a process() run for the first time?
Hi !
Consider : process(a)
According to the text i have :
A process is first entered at the time
of simulation, at which time it is
executed until it suspends itself due
to a wait …
1
vote
2answers
90 views
Overflow bit 32Bit ALU VHDL
Hi folks,
I'm currently writing a 32Bit ALU (Add/Sub) in VHDL. I've got a problem with the overflow bit.
I can't see when to set the overflow depending on the operation (addition, subtraction) and …
1
vote
3answers
51 views
Getting started with HDLs from regular programming
Hello, I've always kinda wanted to make my own microprocessor.. I've read http://stackoverflow.com/questions/632698/how-can-i-make-my-own-microcontroller .
I tried multiple times to learn some …
3
votes
4answers
319 views
Program for drawing VHDL block diagrams?
Is there any free program out there that can parse a collection of VHDL files and build a block diagram from them?
Edit
I'm looking more for a program that will build a block diagram image to go …
2
votes
3answers
2k views
Concatenating bits in VHDL
Hi,
How do you concatenate bits in VHDL? I'm trying to use the following code:
Case b0 & b1 & b2 & b3 is
...
and it throws an error
Thanks
0
votes
1answer
20 views
VHDL - Problem with std_logic_vector
Hi, i'm coding a 4-bit binary adder with accumulator:
library ieee;
use ieee.std_logic_1164.all;
entity binadder is
port(n,clk,sh:in bit;
x,y:inout std_logic_vector(3 downto 0);
…
0
votes
0answers
16 views
How to read data from rom_type in VHDL?
How can I read data from rom_type?
entity my_rom is
port(
addr: in std_logic_vector(3 downto 0);
data: out std_logic_vector(0 to 7)
);
end my_rom;
architecture a of my_rom is
type rom_type is …
4
votes
3answers
234 views
Hidden Features of VHDL
The original question was:
What are some really useful but esoteric language features in VHDL that you've actually been able to employ to do useful work?
The original question was deleted, and I was …
2
votes
6answers
210 views
Which programming language has very short context-free Grammar in its formal specification?
What programming language has short and beautiful grammars (in EBNF)?
Some languages are easer to be parsed. Some time ago I have created a simple VHDL parser, but it was very slow. Not because it is …
6
votes
7answers
175 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 …
3
votes
3answers
197 views
Can you recommend a website for vhdl source codes?
I want a VHDL source codes website that provide a ready to use component source code.
for example: full adder vhdl source code.
0
votes
1answer
30 views
How does a TABLE work in AHDL?
I have an implementation of a Control Unit (UC) in AHDL, and I'm supposed to simulate it and see if it works as defined in the correspondent ASM diagram.
I used MAX+plus II to simulate it, and it …
1
vote
2answers
87 views
Micro-controller 8051: How to get addresses of inputs to JB & CJNE instructions?
I'm implementing whole set of 8051 instructions in VHDL from scratch. Most of things went well but stumbled on these 2 instructions:
JB bit,rel
00100000 bit_address rel_address
CJNE A,#data,rel
…
0
votes
4answers
293 views
VHDL How to add a std_logic_vector with a std_logic singal together ?
I've got
douta : in std_logic_vector (3 downto 0);
doutb : in std_logic_vector (3 downto 0);
c0 : in std_logic;
f1 : in std_logic;
f0 : in std_logic;
res : out std_logic_vector (3 downto 0);
…
