5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/tdl/exlib/parse_argv.rb', line 5
def self.parse(options)
hash = {next_cfg_addr:0x0400000,info:true}
opt_parser = OptionParser.new do |opts|
opts.banner = "Usage: <top_tdl_desgin>.rb [options]"
opts.on("-s", "--sim", "design just for simulator") do |n|
hash[:sim] = true
end
opts.on("-g", "--gold_bitstream", "this is a gold bitstream for boot") do |n|
hash[:gold] = true
end
opts.on("-n40000", "--gold_next_addr=0x0400000", "gold bitstream next configure address") do |n|
hash[:next_cfg_addr] = n.to_i(16)
end
opts.on("-u", "--update_bitstream", "this is a update bitstream for boot") do |n|
hash[:update] = true
end
opts.on("-c", "--no_info", "don't show run infomation of tdl") do |n|
hash[:info] = false
end
opts.on("-h", "--help", "Prints this help") do
puts opts
exit
end
end
opt_parser.parse(options)
return hash
end
|