Skip to content

Commit

Permalink
Fixed 1 and 2 of #9.
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianBDev committed Aug 17, 2021
1 parent 2f675a3 commit f3a80cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Core/Generator/VerilogCodeTemplateGenerator.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace degate
virtual std::string generate_port_definition() const;

virtual std::string generate_module(std::string const& entity_name,
std::string const& port_description = "") const;
std::string const& port_description) const;


virtual std::string generate_impl(std::string const& logic_class = "") const;
Expand Down
4 changes: 3 additions & 1 deletion src/Core/Image/TileCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ namespace degate
unsigned int min_cache_tiles = 4) :
directory(directory),
tile_width_exp(tile_width_exp),
persistent(persistent)
persistent(persistent),
curr_tile_num_x(0),
curr_tile_num_y(0)
{
}

Expand Down

0 comments on commit f3a80cb

Please sign in to comment.