Tagged Questions
Altera is a major brand of Field Programmable Gate Arrays (FPGA).
6
votes
4answers
634 views
Programming VHDL on Linux?
Anyone knows good enviroment to program VHDL and simulate it (don't matter Xilinx or Altera) using Linux?
Thanks
Br
3
votes
1answer
97 views
Reset an Altera M9K's content to 0 (power-up value)
Good day,
I am working on a Stratix III FPGA which contains M9K block memories, the contents of which are conveniently initialised to zero on power-on. This suits my application very well.
Is there ...
3
votes
1answer
209 views
Complex floating-point sequential logic in Verilog
I'm trying to write a synthesizable 3D rasterizer in Verilog/SystemVerilog. The rasterizer right now is not really a 3D rasterizer: it just receives six 32-bits floats for vertex position ...
2
votes
3answers
438 views
Shift Right And Shift Left (SLL/SRL)
so, I'm developing an ALU for MIPS architecture and I'm trying to make a shift left and a shift right so that the ALU can shift any amount of bits.
the Idea I had is to convert the shift value to an ...
2
votes
2answers
287 views
Tristate buffers in Quartus II
I need to clear up a problem with an external input to a CPLD by putting it through a tristate buffer. I know Quartus II has a tristate-buffer megafunction, but I am curious - if I simply tell it to ...
2
votes
1answer
323 views
Can't infer register for … at … because it does not hold its value outside the clock edge
This must be the most common problem among people new to VHDL, but I don't see what I'm doing wrong here! This seems to conform to all of the idioms that I've seen on proper state machine design. I'm ...
2
votes
1answer
201 views
Driving bidirectional lines in Verilog
this question probably wont be explained very well and that's because I don't really understand what's happening in my design.
I need to use an I2C communication bus to talk to a camera (Terasic D5M) ...
2
votes
4answers
498 views
Should you remove all warnings in your Verilog or VHDL design? Why or why not?
In (regular) software I have worked at companies where the gcc option -Wall is used to show all warnings. Then they need to be dealt with. With non-trivial FPGA/ASIC design in Verilog or VHDL there ...
1
vote
1answer
35 views
What are minimal compilations steps to start new simulation after changing some file?
This question is about Altera Quartus. Suppose I have a bdf file with few entities. Each entity has it's own VHDL file. I found a bug in one of entities and fixed it (edited a vhdl file). What are ...
1
vote
4answers
820 views
Creating a frequency divider in VHDL
MAJOR EDIT:
Problem was solved after reading Will Dean's comment. The original question is below the revised code:
-- REVISED CODE (NOW WORKS)
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
entity ...
1
vote
2answers
176 views
create two elements connecting to one mux 41 and 21
I have big problem because i dont uderstand properly how make my homework.
Well i have to make something like this:
I have code which create b1 but i dont knwo how to create the second and make them ...
1
vote
1answer
356 views
How to assign pins in Quartus II
We are looking at moving some code into a CPLD or FPGA in order to make it faster. I have worked with Xilinks and their suite of tools before, but for some reason it was decided that we'd use Altera ...
1
vote
3answers
340 views
Why IEEE vhdl standard library is not STL?
IEEE vhdl language reference manual only defined a limited set of standard packages.And it do not defined the functionalities on the standard types,such as STD_LOGIC.So there are no standard AND2, INV ...
0
votes
1answer
162 views
Can't infer register in Quartus II (VHDL)
This is the full code
library ieee;
use ieee.std_logic_1164.all;
entity move_key_detector is
PORT(
clk : IN STD_LOGIC;
done : IN STD_LOGIC;
hex : IN STD_LOGIC_VECTOR(7 ...
0
votes
2answers
212 views
How to reduce number of logic elements
I am trying to reduce the number of logic elements in my vhdl code. I am using quartus II to program a Altera DE2 FPGA. Can someone please give some advice on how I can do that ?
Thanks
0
votes
1answer
119 views
quartus how convert four input to two inputs in block?
how can i convert entity of bloch which takes 4 inputs to 2 inputs?
A you see here i use three the same mux :( how to take in etykieta2 only two inputs?
code:
library ieee;
use ...
0
votes
6answers
137 views
Random number in C
I'm writing my own method to generate a random number with C as follows:
int randomNumber(){
int catch = *pCOUNTER;
int temp = catch;
temp /= 10;
temp *= 10;
return ...
0
votes
1answer
104 views
I can't open project I closed in Quatrus in windows 7
I can't open project I closed in Quatrus in windows 7 and this message always appear
"
Can't open project -- you do not have permission to write to all the files or create new files in the projects ...
0
votes
4answers
128 views
Need help for this syntax: “#define LEDs (char *) 0x0003010”
I'm doing programming of a softcore processor, Nios II from Altera, below is the code in one of the tutorial, I manage to get the code working by testing it on the hardware (DE2 board), however, I ...
-1
votes
1answer
173 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 ...