diff options
Diffstat (limited to 'rts/Disassembler.h')
-rw-r--r-- | rts/Disassembler.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/rts/Disassembler.h b/rts/Disassembler.h new file mode 100644 index 0000000000..2851097117 --- /dev/null +++ b/rts/Disassembler.h @@ -0,0 +1,19 @@ +/* ----------------------------------------------------------------------------- + * + * (c) The GHC Team, 1998-2005 + * + * Prototypes for functions in Disassembler.c + * + * ---------------------------------------------------------------------------*/ + +#ifndef DISASSEMBLER_H +#define DISASSEMBLER_H + +#ifdef DEBUG + +extern int disInstr ( StgBCO *bco, int pc ); +extern void disassemble( StgBCO *bco ); + +#endif + +#endif /* DISASSEMBLER_H */ |