{-# LANGUAGE ForeignFunctionInterface #-} {-| Module : Heystone.CPU.Mips Description : Definitions for the MIPS architecture. Copyright : (C) Adrian Herrera, 2016 License : GPL-2 Definitions for the MIPS architecture. -} module Heystone.CPU.Mips ( Error(..) ) where {# context lib = "keystone" #} #include -- | MIPS errors. {# enum ks_err_asm_mips as Error { underscoreToCase } with prefix = "KS_ERR_ASM_MIPS_" deriving (Show, Eq, Bounded) #}