mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
27 lines
728 B
C
Executable File
27 lines
728 B
C
Executable File
/******************************************************************************\
|
|
* assemble.h *
|
|
* ------------ *
|
|
* *
|
|
* Define the interface to the assemble.c code. *
|
|
* *
|
|
\******************************************************************************/
|
|
|
|
/******
|
|
* $Revision: 1.4 $
|
|
******/
|
|
|
|
#ifndef ASSEMBLE_H
|
|
#define ASSEMBLE_H
|
|
|
|
|
|
|
|
/******
|
|
* Exported functions.
|
|
******/
|
|
|
|
BOOL Pass1(void);
|
|
BOOL Pass2(void);
|
|
|
|
|
|
#endif
|