Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/HDLRuby/hruby_high.rb,
lib/HDLRuby/std/sequencer_sync.rb
Overview
Extends the Hash class for declaring signals of structure types.
Direct Known Subclasses
Instance Method Summary collapse
-
#constant(hsh) ⇒ Object
Declares high-level untyped constant signals by name and value given by +hsh+ of the current type.
-
#inner(*names) ⇒ Object
Declares high-level untyped inner signals named +names+ of the current type.
-
#inout(*names) ⇒ Object
Declares high-level untyped inout signals named +names+ of the current type.
-
#input(*names) ⇒ Object
Declares high-level input signals named +names+ of the current type.
-
#output(*names) ⇒ Object
Declares high-level untyped output signals named +names+ of the current type.
-
#shared(*names) ⇒ Object
Create new shared signals from +args+.
-
#to_type ⇒ Object
Converts to a new type.
-
#typedef(name) ⇒ Object
Declares a new type definition with +name+ equivalent to current one.
Instance Method Details
#constant(hsh) ⇒ Object
Declares high-level untyped constant signals by name and value given by +hsh+ of the current type.
Retuns the last declared constant.
5044 5045 5046 5047 5048 5049 5050 5051 5052 |
# File 'lib/HDLRuby/hruby_high.rb', line 5044 def constant(hsh) res = nil hsh.each do |name,value| res = HDLRuby::High.top_user. add_inner(SignalC.new(name, TypeStruct.new(:"",:little,self),:inner,value)) end return res end |
#inner(*names) ⇒ Object
Declares high-level untyped inner signals named +names+ of the current type.
Retuns the last declared inner.
5030 5031 5032 5033 5034 5035 5036 5037 5038 |
# File 'lib/HDLRuby/hruby_high.rb', line 5030 def inner(*names) res = nil names.each do |name| res = HDLRuby::High.top_user. add_inner(SignalI.new(name, TypeStruct.new(:"",:little,self),:inner)) end return res end |
#inout(*names) ⇒ Object
Declares high-level untyped inout signals named +names+ of the current type.
Retuns the last declared inout.
5016 5017 5018 5019 5020 5021 5022 5023 5024 |
# File 'lib/HDLRuby/hruby_high.rb', line 5016 def inout(*names) res = nil names.each do |name| res = HDLRuby::High.top_user. add_inout(SignalI.new(name, TypeStruct.new(:"",:little,self),:inout)) end return res end |
#input(*names) ⇒ Object
Declares high-level input signals named +names+ of the current type.
Retuns the last declared input.
4988 4989 4990 4991 4992 4993 4994 4995 4996 |
# File 'lib/HDLRuby/hruby_high.rb', line 4988 def input(*names) res = nil names.each do |name| res = HDLRuby::High.top_user. add_input(SignalI.new(name, TypeStruct.new(:"",:little,self),:input)) end return res end |
#output(*names) ⇒ Object
Declares high-level untyped output signals named +names+ of the current type.
Retuns the last declared output.
5002 5003 5004 5005 5006 5007 5008 5009 5010 |
# File 'lib/HDLRuby/hruby_high.rb', line 5002 def output(*names) res = nil names.each do |name| res = HDLRuby::High.top_user. add_output(SignalI.new(name, TypeStruct.new(:"",:little,self),:output)) end return res end |
#shared(*names) ⇒ Object
Create new shared signals from +args+.
392 393 394 |
# File 'lib/HDLRuby/std/sequencer_sync.rb', line 392 def shared(*names) return self.to_type.shared(*names) end |
#to_type ⇒ Object
Converts to a new type.
4976 4977 4978 |
# File 'lib/HDLRuby/hruby_high.rb', line 4976 def to_type return TypeStruct.new(:"",:little,self) end |
#typedef(name) ⇒ Object
Declares a new type definition with +name+ equivalent to current one.
4981 4982 4983 |
# File 'lib/HDLRuby/hruby_high.rb', line 4981 def typedef(name) return self.to_type.typedef(name) end |