verilog-hdl
Here are 192 public repositories matching this topic...
-
Updated
Jun 9, 2020 - Python
So the examples are useful for somethings but say if I want to have nested if statements or make something that generates this verilog:
reg signed [width:0] x [0:width-1];
always @(posedge clock) begin
x[0] <= 0
end
I've found myself doing a lot of trial and error, reading the source and scouring the existing examples trying to find something that would use these cons
-
Updated
Jun 23, 2020 - Python
Verilator should only run on Verilog-HDL with proper Verilog file extensions.
maybe a
verilog.lint.include : [".sv", ".v"] //Verilog HDL/SystemVerilog configuration setting
-
Updated
Sep 8, 2019 - Verilog
-
Updated
Apr 17, 2018 - C++
-
Updated
Dec 5, 2019 - C
-
Updated
Jan 9, 2020 - VHDL
EDA Playground Link
It would be nice to have a ready to run version of the project in EDA Playground. This would require loading the code and setting up the project in EDA Playground. Finally making it ready compile and run.
-
Updated
May 26, 2020 - Tcl
-
Updated
May 2, 2019 - Verilog
-
Updated
Jul 26, 2019 - Verilog
-
Updated
Dec 31, 2019 - Coq
-
Updated
Apr 3, 2020 - Verilog
-
Updated
Jun 28, 2020 - Verilog
-
Updated
Sep 7, 2014 - Verilog
-
Updated
Nov 5, 2019 - Verilog
With all features of the graphics system now implemented:
- VGA 640x480 @ 60 Hz (rendered @ 320x240)
- Sprites + tiles
- Wide/tall sprites
- Bidirectional smooth scrolling
- Tile map wrapping
- Parallax scrolling
A demo should be created showcasing the spread of features to compare with similar embedded systems (e.g. Maccasoft P8X system, Hydra, etc.)
Addt'ly, implementing all featur
-
Updated
Feb 19, 2017 - Verilog
-
Updated
Jul 8, 2020 - Swift
-
Updated
Nov 21, 2017 - Verilog
-
Updated
Jun 30, 2020 - Tcl
Improve this page
Add a description, image, and links to the verilog-hdl topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the verilog-hdl topic, visit your repo's landing page and select "manage topics."
VUnit.add_source_files_from_csv()
only passes vhdl_standard kwarg toLibrary.add_source_file()
. However, my file gatherer uses.ahd
file extensions to denote altera,.xhd
to denote xilinx, and so on. I need thefile_type
available at least so I can tell VUnit that those file types are still vhdl, but all arguments should be available.