OpenCores
URL https://opencores.org/ocsvn/configurator/configurator/trunk

Subversion Repositories configurator

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 9 to Rev 10
    Reverse comparison

Rev 9 → Rev 10

/configurator/trunk/test/versatile_mem_ctrl_defines.v
1,5 → 1,7
//=tab Main
 
//=comment Select number of WB Groups
 
// Number of WB groups
//=select
//`define WB_GRPS_1 // 1
69,6 → 71,8
`define NR_OF_PORTS 8
`endif
 
//=comment Clock domain settings
 
// Clock domain crossing WB1
//=select
//`define WB1_MEM_CLK // mem clk domain
110,6 → 114,8
`define WB8_CLK // wb8 clk domain
//=end
 
//=comment Misc. settings
 
// Module base name
`define BASE versatile_mem_ctrl_
 
/configurator/trunk/src/Configurator.py
59,6 → 59,12
current_select = None
continue
m = re.match("\/\/=comment(\s+)(.*)(\s*)", row)
if m:
self.tabs[current_tab].append(ConfigLabel(m.group(2)))
continue
if re.match("\s*`ifn?def.*", row):
current_ifdef += 1
123,6 → 129,16
 
class ConfigLabel(gtk.Label):
def __init__(self, text):
gtk.Label.__init__(self, "\n" + text)
def save(self, *args): pass
 
class ConfigOption(gtk.HBox):
def __init__(self, **kwargs):

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.