You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ktechlab/src/languages/asmparser.h

62 lines
1.8 KiB

/***************************************************************************
* Copyright (C) 2005 by David Saxton *
* david@bluehaze.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef ASMPARSER_H
#define ASMPARSER_H
#include <tqstring.h>
class GpsimDebugger;
/**
Reads in an assembly file, and extracts useful information from it, such as the
PIC ID
@author David Saxton
*/
class AsmParser
{
public:
AsmParser( const TQString &url );
~AsmParser();
enum Type { Relocatable, Absolute };
/**
* Read in data from file, return success status.
* @param debugger if this is non-null, then source-line markers read
* from the assembly file (such as those beginning with ";#CSRC" will be
* passed to hllDebugger).
*/
bool parse( GpsimDebugger * debugger = 0l );
/**
* Returns the PIC ID
*/
TQString picID() const { return m_picID; }
/**
* Returns whether or not the assembly file contained the "set radix"
* directive
*/
bool containsRadix() const { return m_bContainsRadix; }
/**
* If the assembly file contains any of several key words that identify
* it as a relocatable object, then this will return Relocatable.
*/
Type type() const { return m_type; }
protected:
const TQString m_url;
TQString m_picID;
bool m_bContainsRadix;
Type m_type;
};
#endif