Class: Wardite::FunctionSection

Inherits:
Section
  • Object
show all
Defined in:
lib/wardite/load.rb

Instance Attribute Summary collapse

Attributes inherited from Section

#code, #name, #size

Instance Method Summary collapse

Constructor Details

#initializeFunctionSection

Returns a new instance of FunctionSection.



30
31
32
33
34
35
# File 'lib/wardite/load.rb', line 30

def initialize
  self.name = "Function"
  self.code = 0x3

  @func_indices = []
end

Instance Attribute Details

#func_indicesObject

: Array



27
28
29
# File 'lib/wardite/load.rb', line 27

def func_indices
  @func_indices
end