~ubuntu-branches/ubuntu/intrepid/dis51/intrepid

« back to all changes in this revision

Viewing changes to global.h

  • Committer: Bazaar Package Importer
  • Author(s): Uwe Hermann
  • Date: 2008-02-17 15:52:20 UTC
  • Revision ID: james.westby@ubuntu.com-20080217155220-mnsnjsovxvw46y0i
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* global.h
 
2
 *
 
3
 * Data shared by all modules
 
4
 *
 
5
 * Copyright 2001, 2002 by David Sullins
 
6
 *
 
7
 * This file is part of Dis51.
 
8
 * 
 
9
 * Dis51 is free software; you can redistribute it and/or modify it under the
 
10
 * terms of the GNU General Public License as published by the Free Software
 
11
 * Foundation, version 2 of the License.
 
12
 * 
 
13
 * Dis51 is distributed in the hope that it will be useful, but WITHOUT ANY
 
14
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
15
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
16
 * details.
 
17
 * 
 
18
 * You should have received a copy of the GNU General Public License along with
 
19
 * Dis51; if not, write to the Free Software Foundation, Inc., 59 Temple
 
20
 * Place, Suite 330, Boston, MA 02111-1307 USA
 
21
 * 
 
22
 * You may contact the author at davesullins@earthlink.net.
 
23
 */
 
24
 
 
25
#ifndef _GLOBAL_H_
 
26
#define _GLOBAL_H_
 
27
 
 
28
#include "distypes.h"
 
29
 
 
30
/* global data */
 
31
extern int Lst;
 
32
extern unsigned short lbl[65536];
 
33
extern const char mnemonic[256][20];
 
34
extern const char op_format[256];
 
35
extern const char sfrname[128][5];
 
36
extern const char sfbitname[128][6];
 
37
 
 
38
#endif /* _GLOBAL_H_ */