def create_masters_in_db(self, lib_name, content_list, debug=False):
# type: (str, Sequence[Any], bool) -> None
"""Create the masters in the design database.
Parameters
----------
lib_name : str
library to create the designs in.
content_list : Sequence[Any]
a list of the master contents. Must be created in this order.
debug : bool
True to print debug messages
"""
if self._prj is None:
raise ValueError('BagProject is not defined.')
self._prj.instantiate_schematic(lib_name, content_list, lib_path=self.lib_path)
评论列表
文章目录