mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-21 16:54:39 +00:00
23 lines
538 B
C
23 lines
538 B
C
|
|
/* interface to OMF format output functions */
|
|
|
|
#ifndef _OMF_H_INCLUDED_
|
|
#define _OMF_H_INCLUDED_
|
|
|
|
/* max size of LEDATA data is 1024 - (1+2+1/2+2/4+1) = 1014 */
|
|
|
|
#define MAX_LEDATA_THRESHOLD (1024 - 10)
|
|
|
|
struct line_num_info;
|
|
|
|
void omf_init( struct module_info * );
|
|
|
|
void omf_set_filepos( void );
|
|
//void omf_write_ledata( struct dsym * );
|
|
void omf_OutSelect( bool );
|
|
void omf_FlushCurrSeg( void );
|
|
void omf_check_flush( const struct line_num_info * );
|
|
|
|
#endif // _OMF_H_INCLUDED_
|
|
|