harpy-0.4.2: Harpy/X86Disassembler.hs
--------------------------------------------------------------------------
-- |
-- Module : Harpy.X86Disassembler
-- Copyright : (c) Martin Grabmueller and Dirk Kleeblatt
-- License : GPL
--
-- Maintainer : {magr,klee}@cs.tu-berlin.de
-- Stability : provisional
-- Portability : portable
--
-- Disassembler for x86 machine code.
--
-- This is a module for compatibility with earlier Harpy releases. It
-- re-exports the disassembler from the disassembler package.
--------------------------------------------------------------------------
module Harpy.X86Disassembler(
-- * Types
Opcode,
Operand(..),
InstrOperandSize(..),
Instruction(..),
ShowStyle(..),
-- * Functions
disassembleBlock,
disassembleList,
disassembleArray,
showIntel,
showAtt
) where
import Text.Disassembler.X86Disassembler