diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-01 12:15:52 +0200 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-01 12:15:52 +0200 |
commit | fc243554a125cb53af0bdf4aa76f95e6c6419e48 (patch) | |
tree | 7c7a099f9d39ccd4034f2b0b7e9b954589a87ef5 | |
parent | ee1f6c47e1eff920068f4bceaf604f9535a2e8a9 (diff) | |
download | AGH-engineering-thesis-fc243554a125cb53af0bdf4aa76f95e6c6419e48.tar.gz AGH-engineering-thesis-fc243554a125cb53af0bdf4aa76f95e6c6419e48.zip |
whenever we have a big array, signify, that we're using embedded RAM for it
-rw-r--r-- | design/vga.v | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/design/vga.v b/design/vga.v index 4b71b28..9057304 100644 --- a/design/vga.v +++ b/design/vga.v @@ -151,6 +151,7 @@ reg [0:7] font [128 * 16 - 1 : 0]; + /* Should result in initialization of embedded RAM */ initial begin $readmemb(FONT_FILE, font, 0, 128 * 16 - 1); end |