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
Instance Method Summary collapse
-
#<=(expr) ⇒ Object
Creates a transmit, or connection with an +expr+.
Instance Method Details
#<=(expr) ⇒ Object
Creates a transmit, or connection with an +expr+.
NOTE: it is converted afterward to an expression if required.
3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 |
# File 'lib/HDLRuby/hruby_high.rb', line 3245 def <=(expr) # Generate a ref from self for the left of the transmit. left = self.to_ref # Cast expr to self if required. expr = expr.to_expr.match_type(left.type) # Ensure expr is an expression. expr = expr.to_expr # Cast it to left if necessary. expr = expr.as(left.type) unless expr.type.eql?(left.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)) add_statement(Transmit.new(left,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)) add_connection(Connection.new(left,expr)) end end |