From b0c05a908eae69b069496c381fb4ea288de74560 Mon Sep 17 00:00:00 2001 From: Graham Edgecombe Date: Sat, 30 Dec 2017 11:02:18 +0000 Subject: [PATCH] Move mem_read_value declaration below the memory access unit comment --- rv32_mem.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rv32_mem.sv b/rv32_mem.sv index cd5d529..4a43e45 100644 --- a/rv32_mem.sv +++ b/rv32_mem.sv @@ -91,9 +91,9 @@ module rv32_mem ( .read_value_out(csr_read_value) ); + /* memory access unit */ logic [31:0] mem_read_value; - /* memory access unit */ assign data_read_out = read_in; assign data_write_out = write_in; assign data_address_out = result_in;