Skip to content

Commit

Permalink
[+] Fix in rtlgen to add skipped include statement with target_cfg.h …
Browse files Browse the repository at this point in the history
…file in systemc
  • Loading branch information
sergeykhbr committed Dec 12, 2023
1 parent 231ce17 commit 10766a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sc/prj/common/vips/uart/vip_uart_top.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ SC_MODULE(vip_uart_top) {
std::string outstr;
std::string outstrtmp;
std::string outfilename; // formatted string name with instnum
FILE *fl;
FILE *fl_tmp;
FILE* fl;
FILE* fl_tmp;

vip_clk *clk0;
vip_uart_receiver *rx0;
Expand Down
1 change: 1 addition & 0 deletions sc/rtl/riscv_soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "ambalib/types_bus0.h"
#include "ambalib/types_bus1.h"
#include "riverlib/river_cfg.h"
#include "../prj/impl/asic/target_cfg.h"
#include "ambalib/axictrl_bus0.h"
#include "ambalib/axi2apb_bus1.h"
#include "misclib/axi_rom.h"
Expand Down
2 changes: 1 addition & 1 deletion sc/rtl/riverlib/core/tracer.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ SC_MODULE(Tracer) {
std::string trfilename; // formatted string name with hartid
std::string outstr;
std::string tracestr;
FILE *fl;
FILE* fl;

};

Expand Down

0 comments on commit 10766a1

Please sign in to comment.