Size: a a a

FPGA technical questions

2019 May 10

CM

Caíque Moura in FPGA technical questions
hi guys, I'm developing a project, my professor said that I will need to use a flag to control the data_out will not explode, I did, but. I don't knowbif it is all right, could someone help me?
источник

CM

Caíque Moura in FPGA technical questions
the code:

ficaria assim?



module Medidor_Function (clock, reset_n, enable, control, data_out, data_in);

input clock, reset_n, control, enable;
output reg [0:31] data_out;
input [31:0] data_in;
integer flag;

always @(negedge clock)
begin
if(!reset_n)
 data_out <= 0;
 flag <=1;
else
if (enable)
 data_out <= data_out + data_in;
 flag <=1;
 end
else
 flag<=0;
 
endmodule
источник

CM

Caíque Moura in FPGA technical questions
i don't know if it it's on the right place
источник

CM

Caíque Moura in FPGA technical questions
there is another doubt
источник

CM

Caíque Moura in FPGA technical questions
источник

CM

Caíque Moura in FPGA technical questions
источник
2019 May 11

P

Priyanka in FPGA technical questions
Hi guys, I need a asynchronous fifo verilog code, if anyone has , please post it here.
источник

AK

Andrew Kushchenko in FPGA technical questions
Priyanka
Hi guys, I need a asynchronous fifo verilog code, if anyone has , please post it here.
You can use fifo which provided from your FPGA vendor
источник

Н

Николай in FPGA technical questions
Priyanka
Hi guys, I need a asynchronous fifo verilog code, if anyone has , please post it here.
источник
2019 May 12

AK

Alexey Kanakhin in FPGA technical questions
Priyanka
Hi guys, I need a asynchronous fifo verilog code, if anyone has , please post it here.
https://github.com/bespoke-silicon-group/basejump_stl/blob/master/bsg_async/bsg_async_fifo.v

Also you may use this one form "BaseJump STL: A standard library for SystemVerilog"
источник
2019 May 14

M

Miguel Angel in FPGA technical questions
don’t assign Z in your design
источник

A

Andrey S in FPGA technical questions
How to find job as FPGA engineer, in Europe?
источник

IK

Ilia Kalistru in FPGA technical questions
Make a resume  and apply to open positions.
источник

IK

Ilia Kalistru in FPGA technical questions
Do you have a specific question?
источник

A

Andrey S in FPGA technical questions
Where to find open positions? Is there any aggregate web resource?
источник

IK

Ilia Kalistru in FPGA technical questions
LinkedIn, glassdoor.com
источник

A

Andrey S in FPGA technical questions
thanks
источник

IK

Ilia Kalistru in FPGA technical questions
You're welcome. If someone knows better resources I'd like to know, too.
источник

PI

Prince😊 Ind in FPGA technical questions
How to load a design in Questa CDC tool
источник

PI

Prince😊 Ind in FPGA technical questions
Prince😊 Ind
How to load a design in Questa CDC tool
Can I get TCL scripting
источник