e32cecc476959bc66e935eefe5f678c088bf4e12
[mate.git] / Mate / NativeMaschine.hs
1 {-# LANGUAGE CPP #-}
2 module Mate.NativeMaschine(
3   emitFromBB,
4   mateHandler,
5   register_signal,
6   wordSize
7   )where
8
9 #ifdef i386_HOST_ARCH
10 import Mate.X86CodeGen
11 import Mate.X86TrapHandling
12
13 wordSize :: Int
14 wordSize = 4
15
16 #else
17 #error "no other arch supported yet :/"
18 #endif