-
Notifications
You must be signed in to change notification settings - Fork 5
/
init.h
executable file
·21 lines (18 loc) · 950 Bytes
/
init.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/***************************************************************************
* NESHLA: The Nintendo Entertainment System High Level Assembler
* Copyright (C) 2003,2004,2005 Brian Provinciano, http://www.bripro.com
*
* This program is free software.
* You may use this code for anything you wish.
* It comes with no warranty.
***************************************************************************/
/******************************************************************************/
#ifndef initH
#define initH
/******************************************************************************/
/******************************************************************************/
BOOL InitializeCompiler(void);
void ShutDownCompiler(void);
/******************************************************************************/
#endif
/******************************************************************************/