89e58cd318b9724d2d89335d8446e57187e01db2
[harpy.git] / Harpy.hs
1 --------------------------------------------------------------------------
2 -- |
3 -- Module:      Harpy
4 -- Copyright:   (c) 2006-2007 Martin Grabmueller and Dirk Kleeblatt
5 -- License:     GPL
6 -- 
7 -- Maintainer:  {magr,klee}@cs.tu-berlin.de
8 -- Stability:   provisional
9 -- Portability: portable
10 --
11 -- Harpy is a library for run-time code generation of x86 machine code.
12 --
13 -- This is a convenience module which re-exports the modules which are
14 -- essential for using Harpy.
15 ----------------------------------------------------------------------------
16 module Harpy(module Harpy.CodeGenMonad,
17              module Harpy.Call,
18              module Harpy.X86Assembler) where
19
20 import Harpy.CodeGenMonad
21 import Harpy.Call
22 import Harpy.X86Assembler