Parent

Voodoo::AMD64ELFGenerator

Generator that produces ELF objects for amd64

Public Class Methods

new(params = {}) click to toggle source
# File voodoo/generators/amd64_elf_generator.rb, line 9
def initialize params = {}
  @nasmgenerator = AMD64NasmGenerator.new params
  super(@nasmgenerator)
  @elfgenerator = NasmELFGenerator.new @nasmgenerator, '-f elf64'
end

Public Instance Methods

output_file_name(input_name) click to toggle source
# File voodoo/generators/amd64_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/amd64_elf_generator.rb, line 19
def output_file_suffix
  @elfgenerator.output_file_suffix
end
write(io) click to toggle source
# File voodoo/generators/amd64_elf_generator.rb, line 23
def write io
  @elfgenerator.write io
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.