Size: a a a

FPGA technical questions

2019 August 07

Д

Даня in FPGA technical questions
I heard that schematic more for teaching purposes, but some people use it mixing with hdl blocks
источник

AK

Alexey Kanakhin in FPGA technical questions
Doka
how about schematic entry?
Do you know why I really hate FPGAs? Because I can not use my spice netlists in it! It is ridiculous!
источник

DG

Denis Gabidullin in FPGA technical questions
Doka
Oh... I forgot for that verification  sh!t 😂
3) Use respectful communication. Remember that you are among professional engineers.
источник

DG

Denis Gabidullin in FPGA technical questions
And we finish holywar discussion.
источник

D

Doka in FPGA technical questions
Denis Gabidullin
3) Use respectful communication. Remember that you are among professional engineers.
Take it easy! It's just joke!
источник
2019 August 11

A

Andrey S in FPGA technical questions
Doka
how about schematic entry?
🙈
источник
2019 August 12

F

Foxner in FPGA technical questions
Hi. A very basic Verilog question that I can't seem to figure out:

always @ (posedge Clk) begin
A <= 1'b0;
B <= A;
end

What would the value of B be after a single clock posedge?
источник

AB

Az By in FPGA technical questions
Foxner
Hi. A very basic Verilog question that I can't seem to figure out:

always @ (posedge Clk) begin
A <= 1'b0;
B <= A;
end

What would the value of B be after a single clock posedge?
X
источник

J

Jesus in FPGA technical questions
Foxner
Hi. A very basic Verilog question that I can't seem to figure out:

always @ (posedge Clk) begin
A <= 1'b0;
B <= A;
end

What would the value of B be after a single clock posedge?
X
источник

J

Jesus in FPGA technical questions
Foxner
Hi. A very basic Verilog question that I can't seem to figure out:

always @ (posedge Clk) begin
A <= 1'b0;
B <= A;
end

What would the value of B be after a single clock posedge?
That's like a pipeline. And you should use a reset signal to initialize all your registers
источник

F

Foxner in FPGA technical questions
So in the second cycle it would become 1'b0, right?
источник

J

Jesus in FPGA technical questions
Foxner
So in the second cycle it would become 1'b0, right?
Yes. You should simulate it, and see the behavior by yourself
источник

F

Foxner in FPGA technical questions
Thanks. I am trying to "reverse-engineer" some Verilog code, and I was wondering whether that would be the case, or why else one would need two different registers with the same value in them.
источник

J

Jesus in FPGA technical questions
Foxner
Thanks. I am trying to "reverse-engineer" some Verilog code, and I was wondering whether that would be the case, or why else one would need two different registers with the same value in them.
Learn about pipeline technique, because the code you are studying it's a pipeline
источник

F

Foxner in FPGA technical questions
I have another question. In the verilog file this appears:
источник

F

Foxner in FPGA technical questions
источник

F

Foxner in FPGA technical questions
MdcEn_n is not mentioned anywhere else in the file. How can this piece of code be valid, if MdcEn_n is not defined in the module?
источник

J

Jesus in FPGA technical questions
Foxner
MdcEn_n is not mentioned anywhere else in the file. How can this piece of code be valid, if MdcEn_n is not defined in the module?
Can you share the code?
источник

F

Foxner in FPGA technical questions
источник

RY

Roman Yanalov in FPGA technical questions
Foxner
MdcEn_n is not mentioned anywhere else in the file. How can this piece of code be valid, if MdcEn_n is not defined in the module?
This is a strange verilog feature. It is possible to use 1bit wire without its definition
источник