Commit df860a74 authored by Allen Jason Tan's avatar Allen Jason Tan
Browse files

Add 1-bit Read/Write signal

parent 175a2dcf
No related merge requests found
Showing with 3 additions and 0 deletions
+3 -0
......@@ -36,6 +36,7 @@ module core_extmem (
output [3:0] ext_data_write,
`endif
output [`BUS_BITS-1:0] ext_data_addr,
output ext_data_wr_en,
output [`DATAMEM_WIDTH-1:0] ext_data_store,
input [`DATAMEM_WIDTH-1:0] ext_data_load,
output ext_data_req,
......@@ -51,6 +52,8 @@ module core_extmem (
output [`WORD_WIDTH-1:0] ext_if_inst,
output [`WORD_WIDTH-1:0] ext_id_inst
);
assign ext_data_wr_en = |ext_data_write;
/******************************** DECLARING WIRES *******************************/
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment