soc_maker 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/History.txt +4 -0
  4. data/LICENSE +678 -0
  5. data/README.rdoc +228 -0
  6. data/Rakefile +46 -0
  7. data/bin/soc_maker_cli +80 -0
  8. data/bin/soc_maker_parser +85 -0
  9. data/core_lib/cores/adv_debug_sys/01_adv_debug_sys.yaml +245 -0
  10. data/core_lib/cores/or1200_rel2/01_or1200.yaml +208 -0
  11. data/core_lib/cores/or1200_rel2/02_or1200_files.yaml +421 -0
  12. data/core_lib/cores/or1200_rel2/03_or1200_sparam.yaml +188 -0
  13. data/core_lib/cores/or1200_rel2/or1200_defines.v.in +1799 -0
  14. data/core_lib/cores/ram_wb/ram_wb.yaml +102 -0
  15. data/core_lib/cores/ram_wb/ram_wb_b3.v.in +259 -0
  16. data/core_lib/cores/uart16550/01_uart16550.yaml +99 -0
  17. data/core_lib/cores/uart16550/02_uart16550_files.yaml +70 -0
  18. data/core_lib/cores/wb_connect/minsoc_tc_top.v +1802 -0
  19. data/core_lib/cores/wb_connect/wb_connect.yaml +733 -0
  20. data/core_lib/inc.yaml +13 -0
  21. data/core_lib/interfaces/clk_rst/clk.yaml +9 -0
  22. data/core_lib/interfaces/clk_rst/rst.yaml +9 -0
  23. data/core_lib/interfaces/clk_rst/single.yaml +7 -0
  24. data/core_lib/interfaces/debug/debug.yaml +32 -0
  25. data/core_lib/interfaces/jtag/jtag.yaml +13 -0
  26. data/core_lib/interfaces/jtag/jtag_tap.yaml +22 -0
  27. data/core_lib/interfaces/power/or_power.yaml +25 -0
  28. data/core_lib/interfaces/uart/uart.yaml +21 -0
  29. data/core_lib/interfaces/wishbone/wishbone_ma_b3.yaml +54 -0
  30. data/core_lib/interfaces/wishbone/wishbone_sl_b3.yaml +51 -0
  31. data/doc/class_arch.uml +5113 -0
  32. data/doc/fig/hierarchical.svg +273 -0
  33. data/examples/or1200_test/or1200_test.cmd +78 -0
  34. data/examples/or1200_test/or1200_test.rb +136 -0
  35. data/examples/or1200_test/rtl/or1200_test_top.vhd +274 -0
  36. data/examples/or1200_test/rtl/s3astarter.ucf +10 -0
  37. data/examples/or1200_test/rtl/xilinx_internal_jtag.v +438 -0
  38. data/examples/or1200_test/rtl/xilinx_internal_jtag_options.v +12 -0
  39. data/examples/or1200_test/sw/README.txt +35 -0
  40. data/examples/or1200_test/sw/bin2vmem.c +159 -0
  41. data/examples/or1200_test/sw/board.h +24 -0
  42. data/examples/or1200_test/sw/compile.sh +18 -0
  43. data/examples/or1200_test/sw/except.S +152 -0
  44. data/examples/or1200_test/sw/int.c +79 -0
  45. data/examples/or1200_test/sw/int.h +14 -0
  46. data/examples/or1200_test/sw/interconnect.h +17 -0
  47. data/examples/or1200_test/sw/interrupts.c +14 -0
  48. data/examples/or1200_test/sw/main.c +16 -0
  49. data/examples/or1200_test/sw/or1200.h +454 -0
  50. data/examples/or1200_test/sw/orp.ld +60 -0
  51. data/examples/or1200_test/sw/reset.S +112 -0
  52. data/examples/or1200_test/sw/support.c +123 -0
  53. data/examples/or1200_test/sw/support.h +33 -0
  54. data/examples/or1200_test/sw/tick.c +30 -0
  55. data/examples/or1200_test/sw/tick.h +2 -0
  56. data/examples/or1200_test/sw/uart.c +136 -0
  57. data/examples/or1200_test/sw/uart.h +126 -0
  58. data/lib/soc_maker.rb +324 -0
  59. data/lib/soc_maker/cli.rb +544 -0
  60. data/lib/soc_maker/conf.rb +310 -0
  61. data/lib/soc_maker/core_def.rb +579 -0
  62. data/lib/soc_maker/core_inst.rb +305 -0
  63. data/lib/soc_maker/err.rb +211 -0
  64. data/lib/soc_maker/hdl_coder.rb +500 -0
  65. data/lib/soc_maker/hdl_file.rb +166 -0
  66. data/lib/soc_maker/hdl_parser.rb +431 -0
  67. data/lib/soc_maker/ifc_def.rb +193 -0
  68. data/lib/soc_maker/ifc_port.rb +133 -0
  69. data/lib/soc_maker/ifc_spc.rb +180 -0
  70. data/lib/soc_maker/lib.rb +289 -0
  71. data/lib/soc_maker/lib_inc.rb +109 -0
  72. data/lib/soc_maker/parameter.rb +149 -0
  73. data/lib/soc_maker/soc_def.rb +847 -0
  74. data/lib/soc_maker/sparameter.rb +289 -0
  75. data/lib/soc_maker/version.rb +8 -0
  76. data/lib/soc_maker/ypp.rb +130 -0
  77. data/soc_maker.gemspec +28 -0
  78. data/spec/cli_cmds1.txt +39 -0
  79. data/spec/cli_spec.rb +49 -0
  80. data/spec/conf_spec.rb +44 -0
  81. data/spec/core_def_spec.rb +503 -0
  82. data/spec/core_inst_spec.rb +169 -0
  83. data/spec/hdl_file_spec.rb +154 -0
  84. data/spec/hdl_parser_spec.rb +201 -0
  85. data/spec/ifc_def_spec.rb +121 -0
  86. data/spec/ifc_port_spec.rb +92 -0
  87. data/spec/ifc_spc_spec.rb +196 -0
  88. data/spec/lib_inc_spec.rb +99 -0
  89. data/spec/lib_spec.rb +209 -0
  90. data/spec/parameter_spec.rb +86 -0
  91. data/spec/soc_def_spec.rb +611 -0
  92. data/spec/soc_maker_spec.rb +7 -0
  93. data/spec/sparameter_spec.rb +182 -0
  94. data/spec/spec_helper.rb +78 -0
  95. data/spec/test_soc.yaml +105 -0
  96. data/spec/test_soc2.yaml +60 -0
  97. data/spec/test_soc_lib/cores/core_A_rel1/00_core_a.yaml +75 -0
  98. data/spec/test_soc_lib/cores/core_A_rel1/01_core_a.yaml +57 -0
  99. data/spec/test_soc_lib/cores/core_A_rel1/core_a.vhd +29 -0
  100. data/spec/test_soc_lib/cores/core_A_rel1/core_a_pkg.vhd.src +3 -0
  101. data/spec/test_soc_lib/cores/core_A_rel1/core_a_pkg2.vhd.src +4 -0
  102. data/spec/test_soc_lib/cores/core_A_rel1/core_a_pkg3.v.src +6 -0
  103. data/spec/test_soc_lib/cores/core_B_rel1/core_b.vhd +25 -0
  104. data/spec/test_soc_lib/cores/core_B_rel1/core_b.yaml +36 -0
  105. data/spec/test_soc_lib/cores/core_C_v1/core_C.vhd +57 -0
  106. data/spec/test_soc_lib/cores/core_C_v1/core_c.yaml +42 -0
  107. data/spec/test_soc_lib/cores/soc_A/soc_A.yaml +12 -0
  108. data/spec/test_soc_lib/cores/soc_maker_include.yaml +6 -0
  109. data/spec/test_soc_lib/ifcs/core_AB_ifc/bidir_ifc.yaml +19 -0
  110. data/spec/test_soc_lib/ifcs/core_AB_ifc/core_AB_ifc.yaml +15 -0
  111. data/spec/test_soc_lib/ifcs/core_AB_ifc/top_ifc.yaml +9 -0
  112. data/spec/test_soc_lib/soc_maker_include.yaml +4 -0
  113. data/spec/yaml_examples.rb +367 -0
  114. data/spec/ypp_spec.rb +156 -0
  115. data/test/test_soc_maker.rb +0 -0
  116. metadata +255 -0
@@ -0,0 +1,156 @@
1
+ ###############################################################
2
+ #
3
+ # File: ypp_spec.rb
4
+ #
5
+ # Author: Christian Hättich
6
+ #
7
+ # Project: System-On-Chip Maker
8
+ #
9
+ # Target: Linux / Windows / Mac
10
+ #
11
+ # Language: ruby
12
+ #
13
+ #
14
+ ###############################################################
15
+ #
16
+ #
17
+ # Copyright (C) 2014 Christian Hättich - feddischson [ at ] opencores.org
18
+ #
19
+ # This program is free software: you can redistribute it and/or modify
20
+ # it under the terms of the GNU General Public License as published by
21
+ # the Free Software Foundation, either version 3 of the License, or
22
+ # (at your option) any later version.
23
+ #
24
+ # This program is distributed in the hope that it will be useful,
25
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
26
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27
+ # GNU General Public License for more details.
28
+ #
29
+ # You should have received a copy of the GNU General Public License
30
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
31
+ #
32
+ #
33
+ ###############################################################
34
+ #
35
+ # Description:
36
+ #
37
+ #
38
+ #
39
+ #
40
+ ###############################################################
41
+ require_relative( 'spec_helper' )
42
+
43
+
44
+
45
+
46
+
47
+ describe SOCMaker::YPP do
48
+ describe "::to_yaml" do
49
+
50
+ [ "testSOCM_COREtest",
51
+ "test SOCM CORE test",
52
+ "SOCM CORE test",
53
+ "SOCM CORE",
54
+ "SOCM_CORE3",
55
+ "5SOCM_CORE test",
56
+ "abc SOCM_CORE1 test" ].each do |w|
57
+ it "should not replace our tokens in these examples" do
58
+ SOCMaker::YPP.to_yaml( w ).should == w
59
+ end
60
+ end
61
+
62
+ [ [ "test abcd SOCM_CORE xyz 234", "test abcd --- !ruby/object:SOCMaker::CoreDef xyz 234" ],
63
+ [ "abc\n\tSOCM_CORE\n\n\tabc\n", "abc\n\t--- !ruby/object:SOCMaker::CoreDef\n\n\tabc\n" ],
64
+ [ "a b c SOCM_IFC_SPC x y z", "a b c --- !ruby/object:SOCMaker::IfcSpc x y z" ],
65
+ [ "a b c SOCM_IFC x y z", "a b c !ruby/object:SOCMaker::IfcDef x y z" ],
66
+ [ "a b c SOCM_PORT x y z", "a b c !ruby/object:SOCMaker::IfcPort x y z" ],
67
+ [ "a b c SOCM_HDL_FILE x y z", "a b c !ruby/object:SOCMaker::HDLFile x y z" ],
68
+ [ "a b c SOCM_SENTRY x y z", "a b c !ruby/object:SOCMaker::SParameterEntry x y z" ],
69
+ [ "a b c SOCM_INCLUDE x y z", "a b c --- !ruby/object:SOCMaker::LibInc x y z" ],
70
+ [ "a b c SOCM_CONF x y z", "a b c --- !ruby/object:SOCMaker::Conf x y z" ]
71
+ ].each do |w|
72
+ it "should replace a single token" do
73
+ SOCMaker::YPP.to_yaml( w[0] ).should == w[1]
74
+ end
75
+ end
76
+
77
+
78
+ [ [ "a b SOCM_CORE 234\n\tSOCM_SOC ab\n\t",
79
+ "a b --- !ruby/object:SOCMaker::CoreDef 234\n\t--- !ruby/object:SOCMaker::SOCDef ab\n\t" ],
80
+ [ " a b SOCM_CORE SOCM_SOC SOCM_CORE\n\tSOCM_CORE abc",
81
+ " a b --- !ruby/object:SOCMaker::CoreDef --- !ruby/object:SOCMaker::SOCDef --- !ruby/object:SOCMaker::CoreDef\n\t--- !ruby/object:SOCMaker::CoreDef abc" ] ].each do |w|
82
+ it "should replace multiple tokens" do
83
+ SOCMaker::YPP.to_yaml( w[0] ).should == w[1]
84
+ end
85
+ end
86
+
87
+ context "multiple entries" do
88
+ it "are processed via block" do
89
+ tmp = """SOCM_CORE
90
+ a
91
+ b
92
+ c
93
+ d
94
+ SOCM_INCLUDE
95
+ e
96
+ f
97
+ g
98
+ """
99
+ cnt = 0
100
+ result = []
101
+ SOCMaker::YPP.to_yaml( tmp ) do |substr|
102
+ cnt+=1
103
+ result << substr
104
+ end
105
+ expect( result[ 0 ] ).to eq( """--- !ruby/object:SOCMaker::CoreDef
106
+ a
107
+ b
108
+ c
109
+ d
110
+ """ )
111
+ expect( result[ 1 ] ).to eq( """--- !ruby/object:SOCMaker::LibInc
112
+ e
113
+ f
114
+ g
115
+ """ )
116
+ expect( cnt ).to be( 2 )
117
+ end
118
+ end
119
+
120
+
121
+
122
+
123
+ end
124
+
125
+
126
+
127
+ describe "::from_yaml" do
128
+
129
+ %w[ CoreDef
130
+ SOCDef
131
+ IfcSpc ].each do |w|
132
+ it "should replace a YAML object string part" do
133
+ tmp = "--- !ruby/object:SOCMaker::" + w + "\nsomemoretext"
134
+ SOCMaker::YPP.from_yaml( tmp ).should == SOCMaker::conf[ :YPP_INV_LUT ][ w ] + "\nsomemoretext"
135
+ end
136
+ end
137
+
138
+ %w[ Conf
139
+ IfcDef
140
+ IfcPort
141
+ HDLFile
142
+ Parameter
143
+ SParameter
144
+ SParameterEntry
145
+ LibInc ].each do |w|
146
+ it "should replace a YAML object string part" do
147
+ tmp = "!ruby/object:SOCMaker::" + w + "\nsomemoretext"
148
+ SOCMaker::YPP.from_yaml( tmp ).should == SOCMaker::conf[ :YPP_INV_LUT ][ w ] + "\nsomemoretext"
149
+ end
150
+ end
151
+
152
+ end
153
+ end
154
+
155
+
156
+ # vim: noai:ts=2:sw=2
File without changes
metadata ADDED
@@ -0,0 +1,255 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: soc_maker
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Christian Haettich
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '3.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec-its
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bones
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '3.8'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '3.8'
55
+ - !ruby/object:Gem::Dependency
56
+ name: simplecov
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '0.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '0.10'
69
+ description: 'System-On-Chip Maker: a tool to design and create SoCs in a simple way,
70
+ written in Ruby. '
71
+ email:
72
+ - feddischson [ at ] opencores.org
73
+ executables:
74
+ - soc_maker_cli
75
+ - soc_maker_parser
76
+ extensions: []
77
+ extra_rdoc_files: []
78
+ files:
79
+ - .gitignore
80
+ - History.txt
81
+ - LICENSE
82
+ - README.rdoc
83
+ - Rakefile
84
+ - bin/soc_maker_cli
85
+ - bin/soc_maker_parser
86
+ - core_lib/cores/adv_debug_sys/01_adv_debug_sys.yaml
87
+ - core_lib/cores/or1200_rel2/01_or1200.yaml
88
+ - core_lib/cores/or1200_rel2/02_or1200_files.yaml
89
+ - core_lib/cores/or1200_rel2/03_or1200_sparam.yaml
90
+ - core_lib/cores/or1200_rel2/or1200_defines.v.in
91
+ - core_lib/cores/ram_wb/ram_wb.yaml
92
+ - core_lib/cores/ram_wb/ram_wb_b3.v.in
93
+ - core_lib/cores/uart16550/01_uart16550.yaml
94
+ - core_lib/cores/uart16550/02_uart16550_files.yaml
95
+ - core_lib/cores/wb_connect/minsoc_tc_top.v
96
+ - core_lib/cores/wb_connect/wb_connect.yaml
97
+ - core_lib/inc.yaml
98
+ - core_lib/interfaces/clk_rst/clk.yaml
99
+ - core_lib/interfaces/clk_rst/rst.yaml
100
+ - core_lib/interfaces/clk_rst/single.yaml
101
+ - core_lib/interfaces/debug/debug.yaml
102
+ - core_lib/interfaces/jtag/jtag.yaml
103
+ - core_lib/interfaces/jtag/jtag_tap.yaml
104
+ - core_lib/interfaces/power/or_power.yaml
105
+ - core_lib/interfaces/uart/uart.yaml
106
+ - core_lib/interfaces/wishbone/wishbone_ma_b3.yaml
107
+ - core_lib/interfaces/wishbone/wishbone_sl_b3.yaml
108
+ - doc/class_arch.uml
109
+ - doc/fig/hierarchical.svg
110
+ - examples/or1200_test/or1200_test.cmd
111
+ - examples/or1200_test/or1200_test.rb
112
+ - examples/or1200_test/rtl/or1200_test_top.vhd
113
+ - examples/or1200_test/rtl/s3astarter.ucf
114
+ - examples/or1200_test/rtl/xilinx_internal_jtag.v
115
+ - examples/or1200_test/rtl/xilinx_internal_jtag_options.v
116
+ - examples/or1200_test/sw/README.txt
117
+ - examples/or1200_test/sw/bin2vmem.c
118
+ - examples/or1200_test/sw/board.h
119
+ - examples/or1200_test/sw/compile.sh
120
+ - examples/or1200_test/sw/except.S
121
+ - examples/or1200_test/sw/int.c
122
+ - examples/or1200_test/sw/int.h
123
+ - examples/or1200_test/sw/interconnect.h
124
+ - examples/or1200_test/sw/interrupts.c
125
+ - examples/or1200_test/sw/main.c
126
+ - examples/or1200_test/sw/or1200.h
127
+ - examples/or1200_test/sw/orp.ld
128
+ - examples/or1200_test/sw/reset.S
129
+ - examples/or1200_test/sw/support.c
130
+ - examples/or1200_test/sw/support.h
131
+ - examples/or1200_test/sw/tick.c
132
+ - examples/or1200_test/sw/tick.h
133
+ - examples/or1200_test/sw/uart.c
134
+ - examples/or1200_test/sw/uart.h
135
+ - lib/soc_maker.rb
136
+ - lib/soc_maker/cli.rb
137
+ - lib/soc_maker/conf.rb
138
+ - lib/soc_maker/core_def.rb
139
+ - lib/soc_maker/core_inst.rb
140
+ - lib/soc_maker/err.rb
141
+ - lib/soc_maker/hdl_coder.rb
142
+ - lib/soc_maker/hdl_file.rb
143
+ - lib/soc_maker/hdl_parser.rb
144
+ - lib/soc_maker/ifc_def.rb
145
+ - lib/soc_maker/ifc_port.rb
146
+ - lib/soc_maker/ifc_spc.rb
147
+ - lib/soc_maker/lib.rb
148
+ - lib/soc_maker/lib_inc.rb
149
+ - lib/soc_maker/parameter.rb
150
+ - lib/soc_maker/soc_def.rb
151
+ - lib/soc_maker/sparameter.rb
152
+ - lib/soc_maker/version.rb
153
+ - lib/soc_maker/ypp.rb
154
+ - soc_maker.gemspec
155
+ - spec/cli_cmds1.txt
156
+ - spec/cli_spec.rb
157
+ - spec/conf_spec.rb
158
+ - spec/core_def_spec.rb
159
+ - spec/core_inst_spec.rb
160
+ - spec/hdl_file_spec.rb
161
+ - spec/hdl_parser_spec.rb
162
+ - spec/ifc_def_spec.rb
163
+ - spec/ifc_port_spec.rb
164
+ - spec/ifc_spc_spec.rb
165
+ - spec/lib_inc_spec.rb
166
+ - spec/lib_spec.rb
167
+ - spec/parameter_spec.rb
168
+ - spec/soc_def_spec.rb
169
+ - spec/soc_maker_spec.rb
170
+ - spec/sparameter_spec.rb
171
+ - spec/spec_helper.rb
172
+ - spec/test_soc.yaml
173
+ - spec/test_soc2.yaml
174
+ - spec/test_soc_lib/cores/core_A_rel1/00_core_a.yaml
175
+ - spec/test_soc_lib/cores/core_A_rel1/01_core_a.yaml
176
+ - spec/test_soc_lib/cores/core_A_rel1/core_a.vhd
177
+ - spec/test_soc_lib/cores/core_A_rel1/core_a_pkg.vhd.src
178
+ - spec/test_soc_lib/cores/core_A_rel1/core_a_pkg2.vhd.src
179
+ - spec/test_soc_lib/cores/core_A_rel1/core_a_pkg3.v.src
180
+ - spec/test_soc_lib/cores/core_B_rel1/core_b.vhd
181
+ - spec/test_soc_lib/cores/core_B_rel1/core_b.yaml
182
+ - spec/test_soc_lib/cores/core_C_v1/core_C.vhd
183
+ - spec/test_soc_lib/cores/core_C_v1/core_c.yaml
184
+ - spec/test_soc_lib/cores/soc_A/soc_A.yaml
185
+ - spec/test_soc_lib/cores/soc_maker_include.yaml
186
+ - spec/test_soc_lib/ifcs/core_AB_ifc/bidir_ifc.yaml
187
+ - spec/test_soc_lib/ifcs/core_AB_ifc/core_AB_ifc.yaml
188
+ - spec/test_soc_lib/ifcs/core_AB_ifc/top_ifc.yaml
189
+ - spec/test_soc_lib/soc_maker_include.yaml
190
+ - spec/yaml_examples.rb
191
+ - spec/ypp_spec.rb
192
+ - test/test_soc_maker.rb
193
+ homepage: https://github.com/feddischson/soc_maker
194
+ licenses:
195
+ - LGPL-3.0
196
+ metadata: {}
197
+ post_install_message:
198
+ rdoc_options: []
199
+ require_paths:
200
+ - lib
201
+ required_ruby_version: !ruby/object:Gem::Requirement
202
+ requirements:
203
+ - - '>='
204
+ - !ruby/object:Gem::Version
205
+ version: 2.0.0
206
+ required_rubygems_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - '>='
209
+ - !ruby/object:Gem::Version
210
+ version: '0'
211
+ requirements: []
212
+ rubyforge_project:
213
+ rubygems_version: 2.4.5
214
+ signing_key:
215
+ specification_version: 4
216
+ summary: System-On-Chip Maker
217
+ test_files:
218
+ - spec/cli_cmds1.txt
219
+ - spec/cli_spec.rb
220
+ - spec/conf_spec.rb
221
+ - spec/core_def_spec.rb
222
+ - spec/core_inst_spec.rb
223
+ - spec/hdl_file_spec.rb
224
+ - spec/hdl_parser_spec.rb
225
+ - spec/ifc_def_spec.rb
226
+ - spec/ifc_port_spec.rb
227
+ - spec/ifc_spc_spec.rb
228
+ - spec/lib_inc_spec.rb
229
+ - spec/lib_spec.rb
230
+ - spec/parameter_spec.rb
231
+ - spec/soc_def_spec.rb
232
+ - spec/soc_maker_spec.rb
233
+ - spec/sparameter_spec.rb
234
+ - spec/spec_helper.rb
235
+ - spec/test_soc.yaml
236
+ - spec/test_soc2.yaml
237
+ - spec/test_soc_lib/cores/core_A_rel1/00_core_a.yaml
238
+ - spec/test_soc_lib/cores/core_A_rel1/01_core_a.yaml
239
+ - spec/test_soc_lib/cores/core_A_rel1/core_a.vhd
240
+ - spec/test_soc_lib/cores/core_A_rel1/core_a_pkg.vhd.src
241
+ - spec/test_soc_lib/cores/core_A_rel1/core_a_pkg2.vhd.src
242
+ - spec/test_soc_lib/cores/core_A_rel1/core_a_pkg3.v.src
243
+ - spec/test_soc_lib/cores/core_B_rel1/core_b.vhd
244
+ - spec/test_soc_lib/cores/core_B_rel1/core_b.yaml
245
+ - spec/test_soc_lib/cores/core_C_v1/core_C.vhd
246
+ - spec/test_soc_lib/cores/core_C_v1/core_c.yaml
247
+ - spec/test_soc_lib/cores/soc_A/soc_A.yaml
248
+ - spec/test_soc_lib/cores/soc_maker_include.yaml
249
+ - spec/test_soc_lib/ifcs/core_AB_ifc/bidir_ifc.yaml
250
+ - spec/test_soc_lib/ifcs/core_AB_ifc/core_AB_ifc.yaml
251
+ - spec/test_soc_lib/ifcs/core_AB_ifc/top_ifc.yaml
252
+ - spec/test_soc_lib/soc_maker_include.yaml
253
+ - spec/yaml_examples.rb
254
+ - spec/ypp_spec.rb
255
+ - test/test_soc_maker.rb