Changeset 553 for trunk/tools/arch_info/genarch.py
- Timestamp:
- Sep 21, 2018, 10:24:58 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/arch_info/genarch.py
r548 r553 83 83 help = 'define system clock frequency (25MHz for FPGA, 600MHz for TSARLET)' ) 84 84 85 parser.add_option( '--segs_set', type = 'string', dest = 'segs_set', 86 default = 'SIMU', 87 help = 'define which set of base addresses to use (may differ between simulation and real machine' ) 88 85 89 parser.add_option( '--hard', type = 'string', dest = 'hard_path', 86 90 help = 'define pathname to directory for the hard_config.h file ' ) … … 110 114 ioc_type = options.ioc_type # ioc controller type 111 115 sys_clk = options.sys_clk # system clock frequency in kHz 116 segs_set = options.segs_set # Set of base addresses used (simu or real) 112 117 113 118 hard_path = options.hard_path # path for hard_config.h file … … 139 144 nb_nics, 140 145 fbf_size, 141 ioc_type ) 146 ioc_type, 147 segs_set ) 142 148 143 149 print '[genarch] archinfo build for %s' % archinfo.name
Note: See TracChangeset
for help on using the changeset viewer.