mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-21 16:54:39 +00:00
18 lines
411 B
C
18 lines
411 B
C
/****************************************************************************
|
|
*
|
|
* Description: hll constructs .IF, ...
|
|
*
|
|
****************************************************************************/
|
|
|
|
|
|
#ifndef _HLL_H_
|
|
#define _HLL_H_
|
|
|
|
extern void HllInit( int ); /* reset counter for hll labels */
|
|
#if FASTMEM==0
|
|
extern void HllFini( void );
|
|
#endif
|
|
extern void HllCheckOpen( void );
|
|
|
|
#endif
|