# File lib/ruby-vpi/vpi.rb, line 523 523: def integer= aValue 524: self.low = aValue & INTEGER_MASK 525: self.high = (aValue >> INTEGER_BITS) & INTEGER_MASK 526: end