Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markmll/todaystart-a153
As-shipped demo for the Altera Cyclone TodayStart-A153 board. Requires Quartus-II 10.1 SP1 minimum.
https://github.com/markmll/todaystart-a153
fpga verilog vhdl
Last synced: 19 days ago
JSON representation
As-shipped demo for the Altera Cyclone TodayStart-A153 board. Requires Quartus-II 10.1 SP1 minimum.
- Host: GitHub
- URL: https://github.com/markmll/todaystart-a153
- Owner: MarkMLl
- License: unlicense
- Created: 2021-05-08T20:16:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-08T20:21:02.000Z (over 3 years ago)
- Last Synced: 2023-07-27T10:55:18.296Z (over 1 year ago)
- Topics: fpga, verilog, vhdl
- Language: VHDL
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TodayStart-A153
As-shipped demo for the Altera Cyclone TodayStart-A153 board. Requires Quartus-II 10.1 SP1 minimum.// This is derived from the TodayStart example key_led.v, which wasn't reliable
// for multiple reasons. The comprehensive CASE statement has been replaced by
// a much smaller number of IFs, and operation has been made synchronous without
// which the initial state was undefined (this board only has a clock on CLK3,
// see http://kiedontaa.blogspot.com/2019/12/gameboy-to-vga.html for comments).
//
// Assume for the purpose of maintenance that there are now two files key_led.v
// and key_led.vhd, use one or the other as Quartus's top-level entity. MarkMLl