/*
* Hatari - symbols.h
*
* This file is distributed under the GNU Public License, version 2 or at
* your option any later version. Read the file gpl.txt for details.
*/
#ifndef HATARI_SYMBOLS_H
#define HATARI_SYMBOLS_H
typedef enum {
SYMTYPE_TEXT = 1,
SYMTYPE_DATA = 2,
SYMTYPE_BSS = 4,
SYMTYPE_ALL = SYMTYPE_TEXT|SYMTYPE_DATA|SYMTYPE_BSS