diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-11-23 14:56:03 +0100 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-11-23 14:56:03 +0100 |
commit | c5e3ee1d1c445f799e3cdfeee57ae8cfa3412743 (patch) | |
tree | 48da9c1c54cf83a73545f8a27329d281b714726b /design | |
parent | a0e9d28f2a21cc42dff7ed2fce3e52cb04bc5170 (diff) | |
download | AGH-engineering-thesis-c5e3ee1d1c445f799e3cdfeee57ae8cfa3412743.tar.gz AGH-engineering-thesis-c5e3ee1d1c445f799e3cdfeee57ae8cfa3412743.zip |
write Wasm code, that can print a number on the screen
Diffstat (limited to 'design')
-rw-r--r-- | design/soc.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/design/soc.v b/design/soc.v index 4171f1d..0d17f2c 100644 --- a/design/soc.v +++ b/design/soc.v @@ -132,14 +132,14 @@ module soc embedded_bram_slave #( - .MEMORY_BLOCKS(1), + .MEMORY_BLOCKS(2), .WORDS_TO_INITIALIZE(`ROM_WORDS_COUNT), .INITIAL_CONTENTS_FILE(ROM_FILE) ) slave0 ( .ACK_O(S0_ACK_O), .CLK_I(CLK), - .ADR_I(S0_ADR_I[7:0]), + .ADR_I(S0_ADR_I[8:0]), .DAT_I(S0_DAT_I), .DAT_O(S0_DAT_O), .RST_I(RST), |