2006-02-26 06:26:56 +00:00
|
|
|
#ifndef DEBUGGER_ASSEMBLER_H
|
|
|
|
#define DEBUGGER_ASSEMBLER_H
|
|
|
|
|
2009-10-26 01:22:51 +00:00
|
|
|
// Directives
|
|
|
|
|
|
|
|
// Assemblers
|
|
|
|
// A = Acme
|
|
|
|
// B = Big Mac S= S-C Macro Assembler
|
|
|
|
// K = DOS Tool Kit T = TED II
|
|
|
|
// L = Lisa W = Weller's Assembler
|
|
|
|
// M = Merlin
|
|
|
|
// u = MicroSparc
|
|
|
|
// O = ORCA/M
|
|
|
|
enum AsmAcmeDirective_e
|
|
|
|
{
|
|
|
|
ASM_A_DEFINE_BYTE
|
|
|
|
,NUM_ASM_A_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmBigMacDirective_e
|
|
|
|
{
|
|
|
|
ASM_B_DEFINE_BYTE
|
|
|
|
,NUM_ASM_B_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmDosToolKitDirective_e
|
|
|
|
{
|
|
|
|
ASM_K_DEFINE_BYTE
|
|
|
|
,NUM_ASM_K_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmLisaDirective_e
|
|
|
|
{
|
|
|
|
ASM_L_DEFINE_BYTE
|
|
|
|
,NUM_ASM_L_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmMerlinDirective_e
|
|
|
|
{
|
|
|
|
ASM_M_ASCII
|
|
|
|
, ASM_M_DEFINE_WORD
|
|
|
|
, ASM_M_DEFINE_BYTE
|
|
|
|
, ASM_M_DEFINE_STORAGE
|
|
|
|
, ASM_M_HEX
|
|
|
|
, ASM_M_ORIGIN
|
|
|
|
, NUM_ASM_M_DIRECTIVES
|
|
|
|
, ASM_M_DEFINE_BYTE_ALIAS
|
|
|
|
, ASM_M_DEFINE_WORD_ALIAS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmMicroSparcDirective_e
|
|
|
|
{
|
|
|
|
ASM_u_DEFINE_BYTE
|
|
|
|
,NUM_ASM_u_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmOrcamDirective_e
|
|
|
|
{
|
|
|
|
ASM_O_DEFINE_BYTE
|
|
|
|
,NUM_ASM_O_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmSCMacroDirective_e
|
|
|
|
{
|
|
|
|
ASM_S_ORIGIN
|
|
|
|
,ASM_S_TARGET_ADDRESS
|
|
|
|
,ASM_S_END_PROGRAM
|
|
|
|
,ASM_S_EQUATE
|
|
|
|
,ASM_S_DATA
|
|
|
|
,ASM_S_ASCII_STRING
|
|
|
|
,ASM_S_HEX_STRING
|
|
|
|
,NUM_ASM_S_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmTedDirective_e
|
|
|
|
{
|
|
|
|
ASM_T_DEFINE_BYTE
|
|
|
|
,NUM_ASM_T_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AsmWellersDirective_e
|
|
|
|
{
|
|
|
|
ASM_W_DEFINE_BYTE
|
|
|
|
,NUM_ASM_W_DIRECTIVES
|
|
|
|
};
|
|
|
|
|
|
|
|
// NOTE: Must keep in sync: AsmDirectives_e g_aAssemblerDirectives
|
|
|
|
enum AsmDirectives_e
|
|
|
|
{
|
|
|
|
FIRST_A_DIRECTIVE = 1,
|
|
|
|
FIRST_B_DIRECTIVE = FIRST_A_DIRECTIVE + NUM_ASM_A_DIRECTIVES, // Acme
|
|
|
|
FIRST_K_DIRECTIVE = FIRST_B_DIRECTIVE + NUM_ASM_B_DIRECTIVES, // Big Mac
|
|
|
|
FIRST_L_DIRECTIVE = FIRST_K_DIRECTIVE + NUM_ASM_K_DIRECTIVES, // DOS Tool Kit
|
|
|
|
FIRST_M_DIRECTIVE = FIRST_L_DIRECTIVE + NUM_ASM_L_DIRECTIVES, // Lisa
|
|
|
|
FIRST_u_DIRECTIVE = FIRST_M_DIRECTIVE + NUM_ASM_M_DIRECTIVES, // Merlin
|
|
|
|
FIRST_O_DIRECTIVE = FIRST_u_DIRECTIVE + NUM_ASM_u_DIRECTIVES, // MicroSparc
|
|
|
|
FIRST_S_DIRECTIVE = FIRST_O_DIRECTIVE + NUM_ASM_O_DIRECTIVES, // Orca
|
|
|
|
FIRST_T_DIRECTIVE = FIRST_S_DIRECTIVE + NUM_ASM_S_DIRECTIVES, // SC
|
|
|
|
FIRST_W_DIRECTIVE = FIRST_T_DIRECTIVE + NUM_ASM_T_DIRECTIVES, // Ted
|
|
|
|
NUM_ASM_DIRECTIVES= FIRST_W_DIRECTIVE + NUM_ASM_W_DIRECTIVES, // Ted
|
|
|
|
|
|
|
|
// NUM_ASM_DIRECTIVES = 1 + // Opcode ... rest are psuedo opcodes
|
|
|
|
// NUM_ASM_A_DIRECTIVES + // Acme
|
|
|
|
// NUM_ASM_B_DIRECTIVES + // Big Mac
|
|
|
|
// NUM_ASM_K_DIRECTIVES + // DOS Tool Kit
|
|
|
|
// NUM_ASM_L_DIRECTIVES + // Lisa
|
|
|
|
// NUM_ASM_M_DIRECTIVES + // Merlin
|
|
|
|
// NUM_ASM_u_DIRECTIVES + // MicroSparc
|
|
|
|
// NUM_ASM_O_DIRECTIVES + // Orca
|
|
|
|
// NUM_ASM_S_DIRECTIVES + // SC
|
|
|
|
// NUM_ASM_T_DIRECTIVES + // Ted
|
|
|
|
// NUM_ASM_W_DIRECTIVES // Weller
|
|
|
|
};
|
|
|
|
|
2006-02-26 06:26:56 +00:00
|
|
|
// Addressing _____________________________________________________________________________________
|
|
|
|
|
|
|
|
extern AddressingMode_t g_aOpmodes[ NUM_ADDRESSING_MODES ];
|
|
|
|
|
|
|
|
// Assembler ______________________________________________________________________________________
|
|
|
|
|
|
|
|
// Hashing for Assembler
|
|
|
|
typedef unsigned int Hash_t;
|
|
|
|
|
|
|
|
struct HashOpcode_t
|
|
|
|
{
|
|
|
|
int m_iOpcode;
|
|
|
|
Hash_t m_nValue;
|
|
|
|
|
|
|
|
// functor
|
|
|
|
bool operator () (const HashOpcode_t & rLHS, const HashOpcode_t & rRHS) const
|
|
|
|
{
|
|
|
|
bool bLessThan = (rLHS.m_nValue < rRHS.m_nValue);
|
|
|
|
return bLessThan;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AssemblerDirective_t
|
|
|
|
{
|
2009-10-26 01:22:51 +00:00
|
|
|
char *m_pMnemonic;
|
2006-02-26 06:26:56 +00:00
|
|
|
Hash_t m_nHash;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern int g_bAssemblerOpcodesHashed; // = false;
|
|
|
|
extern Hash_t g_aOpcodesHash[ NUM_OPCODES ]; // for faster mnemonic lookup, for the assembler
|
|
|
|
extern bool g_bAssemblerInput; // = false;
|
|
|
|
extern int g_nAssemblerAddress; // = 0;
|
|
|
|
|
|
|
|
extern const Opcodes_t *g_aOpcodes; // = NULL; // & g_aOpcodes65C02[ 0 ];
|
|
|
|
|
|
|
|
extern const Opcodes_t g_aOpcodes65C02[ NUM_OPCODES ];
|
|
|
|
extern const Opcodes_t g_aOpcodes6502 [ NUM_OPCODES ];
|
|
|
|
|
2009-10-26 01:22:51 +00:00
|
|
|
extern AssemblerDirective_t g_aAssemblerDirectives[ NUM_ASM_DIRECTIVES ];
|
|
|
|
|
2006-02-26 06:26:56 +00:00
|
|
|
// Prototypes _______________________________________________________________
|
|
|
|
|
2006-08-16 18:58:56 +00:00
|
|
|
int _6502_GetOpmodeOpbyte( const int iAddress, int & iOpmode_, int & nOpbytes_ );
|
2006-06-26 16:59:48 +00:00
|
|
|
// void _6502_GetOpcodeOpmode( int & iOpcode_, int & iOpmode_, int & nOpbytes_ );
|
2006-08-16 18:58:56 +00:00
|
|
|
void _6502_GetOpcodeOpmodeOpbyte( int & iOpcode_, int & iOpmode_, int & nOpbytes_ );
|
2006-06-26 16:59:48 +00:00
|
|
|
bool _6502_GetStackReturnAddress( WORD & nAddress_ );
|
|
|
|
bool _6502_GetTargets( WORD nAddress, int *pTargetPartial_, int *pTargetPointer_, int * pBytes_
|
|
|
|
, const bool bIgnoreJSRJMP = true, bool bIgnoreBranch = true );
|
|
|
|
bool _6502_GetTargetAddress( const WORD & nAddress, WORD & nTarget_ );
|
|
|
|
bool _6502_IsOpcodeBranch( int nOpcode );
|
|
|
|
bool _6502_IsOpcodeValid( int nOpcode );
|
2006-02-26 06:26:56 +00:00
|
|
|
|
|
|
|
int AssemblerHashMnemonic ( const TCHAR * pMnemonic );
|
|
|
|
void AssemblerHashOpcodes ();
|
|
|
|
void AssemblerHashMerlinDirectives ();
|
|
|
|
// bool AssemblerGetAddressingMode ( int iArg, int nArgs, WORD nAddress, vector<int> & vOpcodes );
|
|
|
|
void _CmdAssembleHashDump ();
|
|
|
|
|
|
|
|
int AssemblerDelayedTargetsSize();
|
|
|
|
void AssemblerStartup ();
|
|
|
|
bool Assemble( int iArg, int nArgs, WORD nAddress );
|
|
|
|
|
|
|
|
void AssemblerOn ();
|
|
|
|
void AssemblerOff ();
|
|
|
|
|
|
|
|
#endif
|