/* Architectute dependent code block definitions and code block generation prototypes. */ #ifndef __GENCODE_H__ #define __GENCODE_H__ /* include machine dependent code blocks */ #include "machdep.h" /* function prototypes */ int generateCode( char * code, unsigned int size, unsigned int jump ); unsigned int jmpBlockSize( void ); unsigned int nopBlockSize( void ); unsigned int retBlockSize( void ); #endif