class Rips::Instructions::Beqz

Attributes

length[R]
variables[R]

Public Class Methods

new() click to toggle source

@variables: types of instruction's variables @length: length in bits for each variable

Calls superclass method
# File lib/rips/instructions/beqz.rb, line 12
def initialize
  super("beqz",Formats::BFormat.new(0b011111))
  @variables = [Variables::Address.new]
  @length = {r1:10, op:6}
end