mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
Renamed "stdcells.v" to "techmap.v"
This commit is contained in:
parent
6ca0c569d9
commit
1202f7aa4b
9 changed files with 15 additions and 12 deletions
|
@ -26,7 +26,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "passes/techmap/stdcells.inc"
|
||||
#include "passes/techmap/techmap.inc"
|
||||
|
||||
// see simplemap.cc
|
||||
extern void simplemap_get_mappers(std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers);
|
||||
|
@ -790,7 +790,7 @@ struct TechmapPass : public Pass {
|
|||
RTLIL::Design *map = new RTLIL::Design;
|
||||
if (map_files.empty()) {
|
||||
FILE *f = fmemopen(stdcells_code, strlen(stdcells_code), "rt");
|
||||
Frontend::frontend_call(map, f, "<stdcells.v>", verilog_frontend);
|
||||
Frontend::frontend_call(map, f, "<techmap.v>", verilog_frontend);
|
||||
fclose(f);
|
||||
} else
|
||||
for (auto &fn : map_files)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue