Method: Rips::Instructions::Lest#initialize
- Defined in:
- lib/rips/instructions/lest.rb
#initialize ⇒ Lest
@variables: types of instruction’s variables @length: length in bits for each variable
12 13 14 15 16 |
# File 'lib/rips/instructions/lest.rb', line 12 def initialize super("lest",Formats::DFormat.new(0b0111)) @variables = [Variables::Register.new, Variables::Register.new, Variables::Register.new] @length = {r3:4, r2:4, r1:4, op:4} end |