Flashing a LED with Vivado and a Nexys A7 FPGA board: Step by step walkthrough!

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024

ความคิดเห็น • 7

  • @dw24601
    @dw24601 2 ปีที่แล้ว +2

    Stacey, just wanted to say thank you. You got me up and running with my first Verilog "Blink an LED" module, running on my Nexys A7 :-)

  • @lesvh740
    @lesvh740 2 ปีที่แล้ว +1

    Thanks Stacey. For context, I've been out of tech since bubble memory and PAL were a thing. So the A7 is literally exploring a different planet. I've managed to run the tool chain and several examples. Super fun. I want to try ethernet examples but I'm ..frankly ... lost in the sauce. Any suggestions on first timer approach to ethernet and PHY? Thanks again!

  • @ryan9800
    @ryan9800 ปีที่แล้ว +1

    Great Video! How do you get your simulation to go so fast? Mine takes a few minutes to simulate a second.

  • @ctbram0627
    @ctbram0627 ปีที่แล้ว +1

    I love your intro. You are so chipper.

  • @gyaneshwar345
    @gyaneshwar345 2 ปีที่แล้ว +1

    Thanks for these videos ... very resourceful

  • @digitalguy7859
    @digitalguy7859 2 ปีที่แล้ว

    In SV, how do you know when to declare cnst, parameter and localparam? I mainly just use VHDL and declare constants. I see you use parameter?

    • @FPGAsforBeginners
      @FPGAsforBeginners  2 ปีที่แล้ว +3

      I use parameter for constants that need to be exposed to the level above (outside the module instance) and localparam for constants within the module (local to the module itself).