Skip to content
Snippets Groups Projects
Commit c79c2a21 authored by Pepping's avatar Pepping
Browse files

Renamed component to entity

parent c7a19824
Branches
No related tags found
No related merge requests found
...@@ -68,11 +68,11 @@ VHDL_LIB = """LIBRARY diag_lib; ...@@ -68,11 +68,11 @@ VHDL_LIB = """LIBRARY diag_lib;
# g_blk_sync : BOOLEAN := FALSE # g_blk_sync : BOOLEAN := FALSE
# #
path = '' path = ''
class mms_diag_block_gen(Component): class mms_diag_block_gen(Entity):
def __init__(self, inst_nr=None, **kwargs): def __init__(self, inst_nr=None, **kwargs):
Component.__init__(self, inst_nr=inst_nr, name='mms_diag_block_gen') Entity.__init__(self, inst_nr=inst_nr, name='mms_diag_block_gen')
self.init_entity(path, self.name, kwargs) self.init_entity(path, self.name, kwargs)
......
from components import * from components import *
path = '' path = ''
class mms_diag_data_buffer(Component): class mms_diag_data_buffer(Entity):
def __init__(self, inst_nr=None, **kwargs): def __init__(self, inst_nr=None, **kwargs):
Component.__init__(self, inst_nr=inst_nr, name='mms_diag_data_buffer') Entity.__init__(self, inst_nr=inst_nr, name='mms_diag_data_buffer')
self.init_entity(path, self.name, kwargs) self.init_entity(path, self.name, kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment