diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-12-29 19:56:04 +0100 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-12-29 19:56:04 +0100 |
commit | 68c80359ba0983bc21a18c0270025be9b441c0bb (patch) | |
tree | a06a04eb8756f96d05c55768bd356917847cdc95 /models | |
parent | 5b6a3f3b216939a11ed1978d7da4dd6bbe4edc2a (diff) | |
download | AGH-engineering-thesis-68c80359ba0983bc21a18c0270025be9b441c0bb.tar.gz AGH-engineering-thesis-68c80359ba0983bc21a18c0270025be9b441c0bb.zip |
add the ability to include additional data at the end of bitstream image and prepare an example, that reads thic data through SPI and displays it
Diffstat (limited to 'models')
-rw-r--r-- | models/soc_with_peripherals.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/soc_with_peripherals.v b/models/soc_with_peripherals.v index 40ee341..ec92238 100644 --- a/models/soc_with_peripherals.v +++ b/models/soc_with_peripherals.v @@ -14,7 +14,7 @@ module soc_with_peripherals parameter EMBEDDED_ROM_WORDS_COUNT = "error, rom words count not given", parameter EMBEDDED_ROM_FILE = {DESIGN_DIR, "rom.mem"}, parameter SPI_ROM_WORDS_COUNT = 0, - parameter SPI_ROM_FILE = "/dev/zero" + parameter SPI_ROM_FILE = "/dev/null" ) ( input wire clock_100mhz, |