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.



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

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

  @func_indices = []
end

Instance Attribute Details

#func_indicesObject

: Array



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

def func_indices
  @func_indices
end