Module: HDLRuby::High::HArrow

Defined in:
lib/HDLRuby/hruby_high.rb

Overview

Module giving high-level properties for handling the arrow (<=) operator.

Constant Summary collapse

High =
HDLRuby::High

Instance Method Summary collapse

Instance Method Details

#<=(expr) ⇒ Object

Creates a transmit, or connection with an +expr+.

NOTE: it is converted afterward to an expression if required.



2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
# File 'lib/HDLRuby/hruby_high.rb', line 2968

def <=(expr)
    # Cast expr to self if required.
    expr = expr.to_expr.match_type(self.type)
    # Generate the transmit.
    if High.top_user.is_a?(HDLRuby::Low::Block) then
        # We are in a block, so generate and add a Transmit.
        High.top_user.
            # add_statement(Transmit.new(self.to_ref,expr.to_expr))
            add_statement(Transmit.new(self.to_ref,expr))
    else
        # We are in a system type, so generate and add a Connection.
        High.top_user.
            # add_connection(Connection.new(self.to_ref,expr.to_expr))
            add_connection(Connection.new(self.to_ref,expr))
    end
end