Class: Hash

Inherits:
Object
  • Object
show all
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

HDLRuby::Low::HashName

Instance Method Summary collapse

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.



5141
5142
5143
5144
5145
5146
5147
5148
5149
# File 'lib/HDLRuby/hruby_high.rb', line 5141

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.



5127
5128
5129
5130
5131
5132
5133
5134
5135
# File 'lib/HDLRuby/hruby_high.rb', line 5127

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.



5113
5114
5115
5116
5117
5118
5119
5120
5121
# File 'lib/HDLRuby/hruby_high.rb', line 5113

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.



5085
5086
5087
5088
5089
5090
5091
5092
5093
# File 'lib/HDLRuby/hruby_high.rb', line 5085

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.



5099
5100
5101
5102
5103
5104
5105
5106
5107
# File 'lib/HDLRuby/hruby_high.rb', line 5099

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_typeObject

Converts to a new type.



5073
5074
5075
# File 'lib/HDLRuby/hruby_high.rb', line 5073

def to_type
    return TypeStruct.new(:"",:little,self)
end

#typedef(name) ⇒ Object

Declares a new type definition with +name+ equivalent to current one.



5078
5079
5080
# File 'lib/HDLRuby/hruby_high.rb', line 5078

def typedef(name)
    return self.to_type.typedef(name)
end