Parent

Voodoo::ARMELFGenerator

Generator that produces ELF objects for arm

Public Class Methods

new(params = {}) click to toggle source
# File voodoo/generators/arm_elf_generator.rb, line 9
def initialize params = {}
  @asmgenerator = ARMGasGenerator.new params
  super(@asmgenerator)
  @elfgenerator = GasELFGenerator.new @asmgenerator
end

Public Instance Methods

output_file_name(input_name) click to toggle source
# File voodoo/generators/arm_elf_generator.rb, line 15
def output_file_name input_name
  @elfgenerator.output_file_name input_name
end
output_file_suffix() click to toggle source
# File voodoo/generators/arm_elf_generator.rb, line 19
def output_file_suffix
  @elfgenerator.output_file_suffix
end
write(io) click to toggle source
# File voodoo/generators/arm_elf_generator.rb, line 23
def write io
  @elfgenerator.write io
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.