adding offset info to memories
authorrafaeltp <rafaeltp@soe.ucsc.edu>
Thu, 18 Oct 2018 23:22:33 +0000 (16:22 -0700)
committerrafaeltp <rafaeltp@soe.ucsc.edu>
Thu, 18 Oct 2018 23:22:33 +0000 (16:22 -0700)
backends/verilog/verilog_backend.cc

index 39683922f6d2130063f3fdbcb0523470a0914be0..dde03f9207f987efd7f9324727d405ce90218acb 100644 (file)
@@ -388,7 +388,7 @@ void dump_wire(std::ostream &f, std::string indent, RTLIL::Wire *wire)
 void dump_memory(std::ostream &f, std::string indent, RTLIL::Memory *memory)
 {
        dump_attributes(f, indent, memory->attributes);
-       f << stringf("%s" "reg [%d:0] %s [%d:%d];\n", indent.c_str(), (memory->width-1), id(memory->name).c_str(), memory->size+memory->start_offset-1, memory->start_offset);
+       f << stringf("%s" "reg [%d:0] %s [%d:%d];\n", indent.c_str(), memory->width-1, id(memory->name).c_str(), memory->size+memory->start_offset-1, memory->start_offset);
 }
 
 void dump_cell_expr_port(std::ostream &f, RTLIL::Cell *cell, std::string port, bool gen_signed = true)