1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-02 04:41:35 +00:00

Base code for handling different CPUs, more improvements

git-svn-id: svn://svn.cc65.org/cc65/trunk@2253 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-08-08 11:12:04 +00:00
parent 54b535a606
commit 897f3e9530
17 changed files with 1593 additions and 1926 deletions

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -52,6 +52,7 @@ const char OutExt[] = ".dis"; /* Output file extension */
const char CfgExt[] = ".cfg"; /* Config file extension */
/* Flags and other command line stuff */
unsigned char DebugInfo = 0; /* Add debug info to the object file */
unsigned char FormFeeds = 0; /* Add form feeds to the output? */
unsigned char PassCount = 2; /* How many passed do we do? */
unsigned long StartAddr = 0xC000; /* Start/load address of the program */

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -53,6 +53,7 @@ extern const char OutExt[]; /* Output file extension */
extern const char CfgExt[]; /* Config file extension */
/* Flags and other command line stuff */
extern unsigned char DebugInfo; /* Add debug info to the object file */
extern unsigned char FormFeeds; /* Add form feeds to the output? */
extern unsigned char PassCount; /* How many passed do we do? */
extern unsigned long StartAddr; /* Start/load address of the program */

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 1998-2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 1998-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -42,6 +42,7 @@
/* common */
#include "abend.h"
#include "cmdline.h"
#include "cpu.h"
#include "fname.h"
#include "print.h"
#include "version.h"
@ -50,7 +51,6 @@
#include "attrtab.h"
#include "code.h"
#include "config.h"
#include "cpu.h"
#include "data.h"
#include "error.h"
#include "global.h"
@ -82,6 +82,7 @@ static void Usage (void)
"\n"
"Long options:\n"
" --cpu type\t\tSet cpu type\n"
" --debug-info\t\tAdd debug info to object file\n"
" --formfeeds\t\tAdd formfeeds to the output\n"
" --help\t\tHelp (this text)\n"
" --pagelength n\tSet the page length for the listing\n"
@ -120,25 +121,21 @@ static unsigned long CvtNumber (const char* Arg, const char* Number)
static void OptCPU (const char* Opt, const char* Arg)
static void OptCPU (const char* Opt attribute ((unused)), const char* Arg)
/* Handle the --cpu option */
{
if (Arg == 0) {
NeedArg (Opt);
}
if (strcmp (Arg, "6502") == 0) {
SetCPU (CPU_6502);
} else if (strcmp (Arg, "65C02") == 0) {
SetCPU (CPU_65C02);
} else if (strcmp (Arg, "65816") == 0) {
SetCPU (CPU_65816);
#ifdef SUNPLUS
} else if (strcmp (Arg, "sunplus") == 0) {
SetCPU (CPU_SUNPLUS);
#endif
} else {
AbEnd ("Invalid CPU: `%s'", Arg);
}
/* Find the CPU from the given name */
CPU = FindCPU (Arg);
SetOpcTable (CPU);
}
static void OptDebugInfo (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
/* Add debug info to the object file */
{
DebugInfo = 1;
}
@ -257,7 +254,7 @@ static void OneOpcode (unsigned RemainingBytes)
case atDWordTab:
DWordTable ();
break;
break;
case atAddrTab:
AddrTable ();
@ -307,6 +304,7 @@ static void Disassemble (void)
/* Pass 2 */
Pass = 2;
ResetCode ();
OutputSettings ();
DefOutOfRangeLabels ();
OnePass ();
}
@ -319,6 +317,7 @@ int main (int argc, char* argv [])
/* Program long options */
static const LongOpt OptTab[] = {
{ "--cpu", 1, OptCPU },
{ "--debug-info", 0, OptDebugInfo },
{ "--formfeeds", 0, OptFormFeeds },
{ "--help", 0, OptHelp },
{ "--pagelength", 1, OptPageLength },
@ -347,6 +346,10 @@ int main (int argc, char* argv [])
LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
break;
case 'g':
OptDebugInfo (Arg, 0);
break;
case 'h':
OptHelp (Arg, 0);
break;
@ -405,6 +408,11 @@ int main (int argc, char* argv [])
OutFile = MakeFilename (InFile, OutExt);
}
/* If no CPU given, use the default CPU */
if (CPU == CPU_UNKNOWN) {
CPU = CPU_6502;
}
/* Load the input file */
LoadCode (InFile, StartAddr);

View File

@ -13,12 +13,15 @@ LDFLAGS=
OBJS = attrtab.o \
code.o \
config.o \
cpu.o \
data.o \
error.o \
global.o \
handler.o \
main.o \
opc6502.o \
opc65816.o \
opc65c02.o \
opc65sc02.o \
opctable.o \
output.o \
scanner.o

309
src/da65/opc6502.c Normal file
View File

@ -0,0 +1,309 @@
/*****************************************************************************/
/* */
/* opc6502.h */
/* */
/* 6502 opcode description table */
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
/* da65 */
#include "handler.h"
#include "opc6502.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Descriptions for all opcodes */
const OpcDesc OpcTable_6502[256] = {
{ "brk", 1, 0, CPU_6502, OH_Implicit }, /* $00 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $01 */
{ "cop", 2, 0, CPU_65816, OH_Implicit }, /* $02 */
{ "ora", 2, 0, CPU_65816, OH_StackRelative }, /* $03 */
{ "tsb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $04 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $05 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $06 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $07 */
{ "php", 1, 0, CPU_6502, OH_Implicit }, /* $08 */
{ "ora", 2, 0, CPU_6502, OH_Immidiate }, /* $09 */
{ "asl", 1, 0, CPU_6502, OH_Accumulator }, /* $0a */
{ "phd", 1, 0, CPU_65816, OH_Implicit }, /* $0b */
{ "tsb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $0c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $0f */
{ "bpl", 2, lfLabel, CPU_6502, OH_Relative }, /* $10 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $11 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $12 */
{ "ora", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $13 */
{ "trb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $14 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $15 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $16 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $17 */
{ "clc", 1, 0, CPU_6502, OH_Implicit }, /* $18 */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $19 */
{ "inc", 1, 0, CPU_65816, OH_Accumulator }, /* $1a */
{ "tcs", 1, 0, CPU_65816, OH_Implicit }, /* $1b */
{ "trb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $1c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $1f */
{ "jsr", 3, lfLabel, CPU_6502, OH_Absolute }, /* $20 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $21 */
{ "jsl", 3, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $22 */
{ "and", 2, 0, CPU_65816, OH_StackRelative }, /* $23 */
{ "bit", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $24 */
{ "and", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $25 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $26 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $27 */
{ "plp", 1, 0, CPU_6502, OH_Implicit }, /* $28 */
{ "and", 2, 0, CPU_6502, OH_Immidiate }, /* $29 */
{ "rol", 1, 0, CPU_6502, OH_Accumulator }, /* $2a */
{ "pld", 1, 0, CPU_65816, OH_Implicit }, /* $2b */
{ "bit", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2c */
{ "and", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $2f */
{ "bmi", 2, lfLabel, CPU_6502, OH_Relative }, /* $30 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $31 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $32 */
{ "and", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $33 */
{ "bit", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $34 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $35 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $36 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $37 */
{ "sec", 1, 0, CPU_6502, OH_Implicit }, /* $38 */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $39 */
{ "dec", 1, 0, CPU_65816, OH_Accumulator }, /* $3a */
{ "tsc", 1, 0, CPU_65816, OH_Implicit }, /* $3b */
{ "bit", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $3c */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $3f */
{ "rti", 1, 0, CPU_6502, OH_Rts }, /* $40 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $41 */
{ "wdm", 2, 0, CPU_65816, OH_Implicit }, /* $42 */
{ "eor", 2, 0, CPU_65816, OH_StackRelative }, /* $43 */
{ "mvp", 3, 0, CPU_65816, OH_BlockMove }, /* $44 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $45 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $46 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $47 */
{ "pha", 1, 0, CPU_6502, OH_Implicit }, /* $48 */
{ "eor", 2, 0, CPU_6502, OH_Immidiate }, /* $49 */
{ "lsr", 1, 0, CPU_6502, OH_Accumulator }, /* $4a */
{ "phk", 1, 0, CPU_65816, OH_Implicit }, /* $4b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsolute }, /* $4c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $4f */
{ "bvc", 2, lfLabel, CPU_6502, OH_Relative }, /* $50 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $51 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $52 */
{ "eor", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $53 */
{ "mvn", 3, 0, CPU_65816, OH_BlockMove }, /* $54 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $55 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $56 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $57 */
{ "cli", 1, 0, CPU_6502, OH_Implicit }, /* $58 */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $59 */
{ "phy", 1, 0, CPU_65816, OH_Implicit }, /* $5a */
{ "tcd", 1, 0, CPU_65816, OH_Implicit }, /* $5b */
{ "jml", 4, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $5c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $5f */
{ "rts", 1, 0, CPU_6502, OH_Rts }, /* $60 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $61 */
{ "per", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $62 */
{ "adc", 2, 0, CPU_65816, OH_StackRelative }, /* $63 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $64 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $65 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $66 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $67 */
{ "pla", 1, 0, CPU_6502, OH_Implicit }, /* $68 */
{ "adc", 2, 0, CPU_6502, OH_Immidiate }, /* $69 */
{ "ror", 1, 0, CPU_6502, OH_Accumulator }, /* $6a */
{ "rtl", 1, 0, CPU_65816, OH_Implicit }, /* $6b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsoluteIndirect }, /* $6c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $6f */
{ "bvs", 2, lfLabel, CPU_6502, OH_Relative }, /* $70 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $71 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $72 */
{ "adc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $73 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $74 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $75 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $76 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $77 */
{ "sei", 1, 0, CPU_6502, OH_Implicit }, /* $78 */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $79 */
{ "ply", 1, 0, CPU_65816, OH_Implicit }, /* $7a */
{ "tdc", 1, 0, CPU_65816, OH_Implicit }, /* $7b */
{ "jmp", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $7c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $7f */
{ "bra", 2, lfLabel, CPU_65816, OH_Relative }, /* $80 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $81 */
{ "brl", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $82 */
{ "sta", 2, 0, CPU_65816, OH_StackRelative }, /* $83 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $84 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $85 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $86 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $87 */
{ "dey", 1, 0, CPU_6502, OH_Implicit }, /* $88 */
{ "bit", 2, 0, CPU_65816, OH_Immidiate }, /* $89 */
{ "txa", 1, 0, CPU_6502, OH_Implicit }, /* $8a */
{ "phb", 1, 0, CPU_65816, OH_Implicit }, /* $8b */
{ "sty", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8d */
{ "stx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $8f */
{ "bcc", 2, lfLabel, CPU_6502, OH_Relative }, /* $90 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $91 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $92 */
{ "sta", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $93 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $94 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $95 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $96 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $97 */
{ "tya", 1, 0, CPU_6502, OH_Implicit }, /* $98 */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $99 */
{ "txs", 1, 0, CPU_6502, OH_Implicit }, /* $9a */
{ "txy", 1, 0, CPU_65816, OH_Implicit }, /* $9b */
{ "stz", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $9c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $9d */
{ "stz", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $9e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $9f */
{ "ldy", 2, 0, CPU_6502, OH_Immidiate }, /* $a0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $a1 */
{ "ldx", 2, 0, CPU_6502, OH_Immidiate }, /* $a2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelative }, /* $a3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $a7 */
{ "tay", 1, 0, CPU_6502, OH_Implicit }, /* $a8 */
{ "lda", 2, 0, CPU_6502, OH_Immidiate }, /* $a9 */
{ "tax", 1, 0, CPU_6502, OH_Implicit }, /* $aa */
{ "plb", 1, 0, CPU_65816, OH_Implicit }, /* $ab */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ac */
{ "lda", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ad */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ae */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $af */
{ "bcs", 2, lfLabel, CPU_6502, OH_Relative }, /* $b0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $b1 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $b2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $b3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $b6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $b7 */
{ "clv", 1, 0, CPU_6502, OH_Implicit }, /* $b8 */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $b9 */
{ "tsx", 1, 0, CPU_6502, OH_Implicit }, /* $ba */
{ "tyx", 1, 0, CPU_65816, OH_Implicit }, /* $bb */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bc */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bd */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $be */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $bf */
{ "cpy", 2, 0, CPU_6502, OH_Immidiate }, /* $c0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $c1 */
{ "rep", 2, 0, CPU_65816, OH_Immidiate }, /* $c2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelative }, /* $c3 */
{ "cpy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $c7 */
{ "iny", 1, 0, CPU_6502, OH_Implicit }, /* $c8 */
{ "cmp", 2, 0, CPU_6502, OH_Immidiate }, /* $c9 */
{ "dex", 1, 0, CPU_6502, OH_Implicit }, /* $ca */
{ "wai", 1, 0, CPU_65816, OH_Implicit }, /* $cb */
{ "cpy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ce */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $cf */
{ "bne", 2, lfLabel, CPU_6502, OH_Relative }, /* $d0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $d2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $d3 */
{ "pei", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $d4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $d7 */
{ "cld", 1, 0, CPU_6502, OH_Implicit }, /* $d8 */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $d9 */
{ "phx", 1, 0, CPU_65816, OH_Implicit }, /* $da */
{ "stp", 1, 0, CPU_65816, OH_Implicit }, /* $db */
{ "jml", 3, lfLabel, CPU_65816, OH_AbsoluteIndirect }, /* $dc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $dd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $de */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $df */
{ "cpx", 2, 0, CPU_6502, OH_Immidiate }, /* $e0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $e1 */
{ "sep", 2, 0, CPU_65816, OH_Immidiate }, /* $e2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelative }, /* $e3 */
{ "cpx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $e7 */
{ "inx", 1, 0, CPU_6502, OH_Implicit }, /* $e8 */
{ "sbc", 2, 0, CPU_6502, OH_Immidiate }, /* $e9 */
{ "nop", 1, 0, CPU_6502, OH_Implicit }, /* $ea */
{ "xba", 1, 0, CPU_65816, OH_Implicit }, /* $eb */
{ "cpx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ec */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ed */
{ "inc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ee */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $ef */
{ "beq", 2, lfLabel, CPU_6502, OH_Relative }, /* $f0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $f1 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $f2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $f3 */
{ "pea", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $f4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $f7 */
{ "sed", 1, 0, CPU_6502, OH_Implicit }, /* $f8 */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $f9 */
{ "plx", 1, 0, CPU_65816, OH_Implicit }, /* $fa */
{ "xce", 1, 0, CPU_65816, OH_Implicit }, /* $fb */
{ "jsr", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $fc */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fd */
{ "inc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fe */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $ff */
};

View File

@ -1,15 +1,15 @@
/*****************************************************************************/
/* */
/* cpu.c */
/* opc6502.h */
/* */
/* CPU type definitions */
/* 6502 opcode description table */
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -33,34 +33,28 @@
#include "cpu.h"
#ifndef OPC6502_H
#define OPC6502_H
#include "opcdesc.h"
/*****************************************************************************/
/* Data */
/* Data */
/*****************************************************************************/
/* Current CPU */
CPUType CPU = CPU_6502;
/* Descriptions for all opcodes */
extern const OpcDesc OpcTable_6502[256];
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void SetCPU (CPUType NewCPU)
/* Set a new CPU */
{
CPU = NewCPU;
}
/* End of opc6502.h */
#endif

309
src/da65/opc65816.c Normal file
View File

@ -0,0 +1,309 @@
/*****************************************************************************/
/* */
/* opc65816.h */
/* */
/* 65816 opcode description table */
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
/* da65 */
#include "handler.h"
#include "opc65816.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Descriptions for all opcodes */
const OpcDesc OpcTable_65816[256] = {
{ "brk", 1, 0, CPU_6502, OH_Implicit }, /* $00 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $01 */
{ "cop", 2, 0, CPU_65816, OH_Implicit }, /* $02 */
{ "ora", 2, 0, CPU_65816, OH_StackRelative }, /* $03 */
{ "tsb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $04 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $05 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $06 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $07 */
{ "php", 1, 0, CPU_6502, OH_Implicit }, /* $08 */
{ "ora", 2, 0, CPU_6502, OH_Immidiate }, /* $09 */
{ "asl", 1, 0, CPU_6502, OH_Accumulator }, /* $0a */
{ "phd", 1, 0, CPU_65816, OH_Implicit }, /* $0b */
{ "tsb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $0c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $0f */
{ "bpl", 2, lfLabel, CPU_6502, OH_Relative }, /* $10 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $11 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $12 */
{ "ora", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $13 */
{ "trb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $14 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $15 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $16 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $17 */
{ "clc", 1, 0, CPU_6502, OH_Implicit }, /* $18 */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $19 */
{ "inc", 1, 0, CPU_65816, OH_Accumulator }, /* $1a */
{ "tcs", 1, 0, CPU_65816, OH_Implicit }, /* $1b */
{ "trb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $1c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $1f */
{ "jsr", 3, lfLabel, CPU_6502, OH_Absolute }, /* $20 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $21 */
{ "jsl", 3, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $22 */
{ "and", 2, 0, CPU_65816, OH_StackRelative }, /* $23 */
{ "bit", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $24 */
{ "and", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $25 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $26 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $27 */
{ "plp", 1, 0, CPU_6502, OH_Implicit }, /* $28 */
{ "and", 2, 0, CPU_6502, OH_Immidiate }, /* $29 */
{ "rol", 1, 0, CPU_6502, OH_Accumulator }, /* $2a */
{ "pld", 1, 0, CPU_65816, OH_Implicit }, /* $2b */
{ "bit", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2c */
{ "and", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $2f */
{ "bmi", 2, lfLabel, CPU_6502, OH_Relative }, /* $30 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $31 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $32 */
{ "and", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $33 */
{ "bit", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $34 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $35 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $36 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $37 */
{ "sec", 1, 0, CPU_6502, OH_Implicit }, /* $38 */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $39 */
{ "dec", 1, 0, CPU_65816, OH_Accumulator }, /* $3a */
{ "tsc", 1, 0, CPU_65816, OH_Implicit }, /* $3b */
{ "bit", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $3c */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $3f */
{ "rti", 1, 0, CPU_6502, OH_Rts }, /* $40 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $41 */
{ "wdm", 2, 0, CPU_65816, OH_Implicit }, /* $42 */
{ "eor", 2, 0, CPU_65816, OH_StackRelative }, /* $43 */
{ "mvp", 3, 0, CPU_65816, OH_BlockMove }, /* $44 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $45 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $46 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $47 */
{ "pha", 1, 0, CPU_6502, OH_Implicit }, /* $48 */
{ "eor", 2, 0, CPU_6502, OH_Immidiate }, /* $49 */
{ "lsr", 1, 0, CPU_6502, OH_Accumulator }, /* $4a */
{ "phk", 1, 0, CPU_65816, OH_Implicit }, /* $4b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsolute }, /* $4c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $4f */
{ "bvc", 2, lfLabel, CPU_6502, OH_Relative }, /* $50 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $51 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $52 */
{ "eor", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $53 */
{ "mvn", 3, 0, CPU_65816, OH_BlockMove }, /* $54 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $55 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $56 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $57 */
{ "cli", 1, 0, CPU_6502, OH_Implicit }, /* $58 */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $59 */
{ "phy", 1, 0, CPU_65816, OH_Implicit }, /* $5a */
{ "tcd", 1, 0, CPU_65816, OH_Implicit }, /* $5b */
{ "jml", 4, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $5c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $5f */
{ "rts", 1, 0, CPU_6502, OH_Rts }, /* $60 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $61 */
{ "per", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $62 */
{ "adc", 2, 0, CPU_65816, OH_StackRelative }, /* $63 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $64 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $65 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $66 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $67 */
{ "pla", 1, 0, CPU_6502, OH_Implicit }, /* $68 */
{ "adc", 2, 0, CPU_6502, OH_Immidiate }, /* $69 */
{ "ror", 1, 0, CPU_6502, OH_Accumulator }, /* $6a */
{ "rtl", 1, 0, CPU_65816, OH_Implicit }, /* $6b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsoluteIndirect }, /* $6c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $6f */
{ "bvs", 2, lfLabel, CPU_6502, OH_Relative }, /* $70 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $71 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $72 */
{ "adc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $73 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $74 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $75 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $76 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $77 */
{ "sei", 1, 0, CPU_6502, OH_Implicit }, /* $78 */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $79 */
{ "ply", 1, 0, CPU_65816, OH_Implicit }, /* $7a */
{ "tdc", 1, 0, CPU_65816, OH_Implicit }, /* $7b */
{ "jmp", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $7c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $7f */
{ "bra", 2, lfLabel, CPU_65816, OH_Relative }, /* $80 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $81 */
{ "brl", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $82 */
{ "sta", 2, 0, CPU_65816, OH_StackRelative }, /* $83 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $84 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $85 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $86 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $87 */
{ "dey", 1, 0, CPU_6502, OH_Implicit }, /* $88 */
{ "bit", 2, 0, CPU_65816, OH_Immidiate }, /* $89 */
{ "txa", 1, 0, CPU_6502, OH_Implicit }, /* $8a */
{ "phb", 1, 0, CPU_65816, OH_Implicit }, /* $8b */
{ "sty", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8d */
{ "stx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $8f */
{ "bcc", 2, lfLabel, CPU_6502, OH_Relative }, /* $90 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $91 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $92 */
{ "sta", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $93 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $94 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $95 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $96 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $97 */
{ "tya", 1, 0, CPU_6502, OH_Implicit }, /* $98 */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $99 */
{ "txs", 1, 0, CPU_6502, OH_Implicit }, /* $9a */
{ "txy", 1, 0, CPU_65816, OH_Implicit }, /* $9b */
{ "stz", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $9c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $9d */
{ "stz", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $9e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $9f */
{ "ldy", 2, 0, CPU_6502, OH_Immidiate }, /* $a0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $a1 */
{ "ldx", 2, 0, CPU_6502, OH_Immidiate }, /* $a2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelative }, /* $a3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $a7 */
{ "tay", 1, 0, CPU_6502, OH_Implicit }, /* $a8 */
{ "lda", 2, 0, CPU_6502, OH_Immidiate }, /* $a9 */
{ "tax", 1, 0, CPU_6502, OH_Implicit }, /* $aa */
{ "plb", 1, 0, CPU_65816, OH_Implicit }, /* $ab */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ac */
{ "lda", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ad */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ae */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $af */
{ "bcs", 2, lfLabel, CPU_6502, OH_Relative }, /* $b0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $b1 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $b2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $b3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $b6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $b7 */
{ "clv", 1, 0, CPU_6502, OH_Implicit }, /* $b8 */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $b9 */
{ "tsx", 1, 0, CPU_6502, OH_Implicit }, /* $ba */
{ "tyx", 1, 0, CPU_65816, OH_Implicit }, /* $bb */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bc */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bd */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $be */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $bf */
{ "cpy", 2, 0, CPU_6502, OH_Immidiate }, /* $c0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $c1 */
{ "rep", 2, 0, CPU_65816, OH_Immidiate }, /* $c2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelative }, /* $c3 */
{ "cpy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $c7 */
{ "iny", 1, 0, CPU_6502, OH_Implicit }, /* $c8 */
{ "cmp", 2, 0, CPU_6502, OH_Immidiate }, /* $c9 */
{ "dex", 1, 0, CPU_6502, OH_Implicit }, /* $ca */
{ "wai", 1, 0, CPU_65816, OH_Implicit }, /* $cb */
{ "cpy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ce */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $cf */
{ "bne", 2, lfLabel, CPU_6502, OH_Relative }, /* $d0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $d2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $d3 */
{ "pei", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $d4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $d7 */
{ "cld", 1, 0, CPU_6502, OH_Implicit }, /* $d8 */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $d9 */
{ "phx", 1, 0, CPU_65816, OH_Implicit }, /* $da */
{ "stp", 1, 0, CPU_65816, OH_Implicit }, /* $db */
{ "jml", 3, lfLabel, CPU_65816, OH_AbsoluteIndirect }, /* $dc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $dd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $de */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $df */
{ "cpx", 2, 0, CPU_6502, OH_Immidiate }, /* $e0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $e1 */
{ "sep", 2, 0, CPU_65816, OH_Immidiate }, /* $e2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelative }, /* $e3 */
{ "cpx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $e7 */
{ "inx", 1, 0, CPU_6502, OH_Implicit }, /* $e8 */
{ "sbc", 2, 0, CPU_6502, OH_Immidiate }, /* $e9 */
{ "nop", 1, 0, CPU_6502, OH_Implicit }, /* $ea */
{ "xba", 1, 0, CPU_65816, OH_Implicit }, /* $eb */
{ "cpx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ec */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ed */
{ "inc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ee */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $ef */
{ "beq", 2, lfLabel, CPU_6502, OH_Relative }, /* $f0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $f1 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $f2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $f3 */
{ "pea", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $f4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $f7 */
{ "sed", 1, 0, CPU_6502, OH_Implicit }, /* $f8 */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $f9 */
{ "plx", 1, 0, CPU_65816, OH_Implicit }, /* $fa */
{ "xce", 1, 0, CPU_65816, OH_Implicit }, /* $fb */
{ "jsr", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $fc */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fd */
{ "inc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fe */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $ff */
};

View File

@ -1,15 +1,15 @@
/*****************************************************************************/
/* */
/* cpu.h */
/* opc65816.h */
/* */
/* CPU type definitions */
/* 65816 opcode description table */
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -33,43 +33,27 @@
#ifndef CPU_H
#define CPU_H
#ifndef OPC65816_H
#define OPC65816_H
#include "opcdesc.h"
/*****************************************************************************/
/* Data */
/* Data */
/*****************************************************************************/
/* Supported CPUs */
typedef enum CPUType {
CPU_6502 = 0x01,
CPU_65C02 = 0x02,
CPU_65816 = 0x04,
CPU_ALL = 0x07
} CPUType;
/* Current CPU */
extern CPUType CPU;
/* Descriptions for all opcodes */
extern const OpcDesc OpcTable_65816[256];
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void SetCPU (CPUType NewCPU);
/* Set a new CPU */
/* End of cpu.h */
/* End of opc65816.h */
#endif

309
src/da65/opc65c02.c Normal file
View File

@ -0,0 +1,309 @@
/*****************************************************************************/
/* */
/* opc65c02.h */
/* */
/* 65C02 opcode description table */
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
/* da65 */
#include "handler.h"
#include "opc65c02.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Descriptions for all opcodes */
const OpcDesc OpcTable_65C02[256] = {
{ "brk", 1, 0, CPU_6502, OH_Implicit }, /* $00 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $01 */
{ "cop", 2, 0, CPU_65816, OH_Implicit }, /* $02 */
{ "ora", 2, 0, CPU_65816, OH_StackRelative }, /* $03 */
{ "tsb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $04 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $05 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $06 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $07 */
{ "php", 1, 0, CPU_6502, OH_Implicit }, /* $08 */
{ "ora", 2, 0, CPU_6502, OH_Immidiate }, /* $09 */
{ "asl", 1, 0, CPU_6502, OH_Accumulator }, /* $0a */
{ "phd", 1, 0, CPU_65816, OH_Implicit }, /* $0b */
{ "tsb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $0c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $0f */
{ "bpl", 2, lfLabel, CPU_6502, OH_Relative }, /* $10 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $11 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $12 */
{ "ora", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $13 */
{ "trb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $14 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $15 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $16 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $17 */
{ "clc", 1, 0, CPU_6502, OH_Implicit }, /* $18 */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $19 */
{ "inc", 1, 0, CPU_65816, OH_Accumulator }, /* $1a */
{ "tcs", 1, 0, CPU_65816, OH_Implicit }, /* $1b */
{ "trb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $1c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $1f */
{ "jsr", 3, lfLabel, CPU_6502, OH_Absolute }, /* $20 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $21 */
{ "jsl", 3, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $22 */
{ "and", 2, 0, CPU_65816, OH_StackRelative }, /* $23 */
{ "bit", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $24 */
{ "and", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $25 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $26 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $27 */
{ "plp", 1, 0, CPU_6502, OH_Implicit }, /* $28 */
{ "and", 2, 0, CPU_6502, OH_Immidiate }, /* $29 */
{ "rol", 1, 0, CPU_6502, OH_Accumulator }, /* $2a */
{ "pld", 1, 0, CPU_65816, OH_Implicit }, /* $2b */
{ "bit", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2c */
{ "and", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $2f */
{ "bmi", 2, lfLabel, CPU_6502, OH_Relative }, /* $30 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $31 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $32 */
{ "and", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $33 */
{ "bit", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $34 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $35 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $36 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $37 */
{ "sec", 1, 0, CPU_6502, OH_Implicit }, /* $38 */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $39 */
{ "dec", 1, 0, CPU_65816, OH_Accumulator }, /* $3a */
{ "tsc", 1, 0, CPU_65816, OH_Implicit }, /* $3b */
{ "bit", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $3c */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $3f */
{ "rti", 1, 0, CPU_6502, OH_Rts }, /* $40 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $41 */
{ "wdm", 2, 0, CPU_65816, OH_Implicit }, /* $42 */
{ "eor", 2, 0, CPU_65816, OH_StackRelative }, /* $43 */
{ "mvp", 3, 0, CPU_65816, OH_BlockMove }, /* $44 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $45 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $46 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $47 */
{ "pha", 1, 0, CPU_6502, OH_Implicit }, /* $48 */
{ "eor", 2, 0, CPU_6502, OH_Immidiate }, /* $49 */
{ "lsr", 1, 0, CPU_6502, OH_Accumulator }, /* $4a */
{ "phk", 1, 0, CPU_65816, OH_Implicit }, /* $4b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsolute }, /* $4c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $4f */
{ "bvc", 2, lfLabel, CPU_6502, OH_Relative }, /* $50 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $51 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $52 */
{ "eor", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $53 */
{ "mvn", 3, 0, CPU_65816, OH_BlockMove }, /* $54 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $55 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $56 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $57 */
{ "cli", 1, 0, CPU_6502, OH_Implicit }, /* $58 */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $59 */
{ "phy", 1, 0, CPU_65816, OH_Implicit }, /* $5a */
{ "tcd", 1, 0, CPU_65816, OH_Implicit }, /* $5b */
{ "jml", 4, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $5c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $5f */
{ "rts", 1, 0, CPU_6502, OH_Rts }, /* $60 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $61 */
{ "per", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $62 */
{ "adc", 2, 0, CPU_65816, OH_StackRelative }, /* $63 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $64 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $65 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $66 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $67 */
{ "pla", 1, 0, CPU_6502, OH_Implicit }, /* $68 */
{ "adc", 2, 0, CPU_6502, OH_Immidiate }, /* $69 */
{ "ror", 1, 0, CPU_6502, OH_Accumulator }, /* $6a */
{ "rtl", 1, 0, CPU_65816, OH_Implicit }, /* $6b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsoluteIndirect }, /* $6c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $6f */
{ "bvs", 2, lfLabel, CPU_6502, OH_Relative }, /* $70 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $71 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $72 */
{ "adc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $73 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $74 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $75 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $76 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $77 */
{ "sei", 1, 0, CPU_6502, OH_Implicit }, /* $78 */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $79 */
{ "ply", 1, 0, CPU_65816, OH_Implicit }, /* $7a */
{ "tdc", 1, 0, CPU_65816, OH_Implicit }, /* $7b */
{ "jmp", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $7c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $7f */
{ "bra", 2, lfLabel, CPU_65816, OH_Relative }, /* $80 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $81 */
{ "brl", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $82 */
{ "sta", 2, 0, CPU_65816, OH_StackRelative }, /* $83 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $84 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $85 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $86 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $87 */
{ "dey", 1, 0, CPU_6502, OH_Implicit }, /* $88 */
{ "bit", 2, 0, CPU_65816, OH_Immidiate }, /* $89 */
{ "txa", 1, 0, CPU_6502, OH_Implicit }, /* $8a */
{ "phb", 1, 0, CPU_65816, OH_Implicit }, /* $8b */
{ "sty", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8d */
{ "stx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $8f */
{ "bcc", 2, lfLabel, CPU_6502, OH_Relative }, /* $90 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $91 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $92 */
{ "sta", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $93 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $94 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $95 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $96 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $97 */
{ "tya", 1, 0, CPU_6502, OH_Implicit }, /* $98 */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $99 */
{ "txs", 1, 0, CPU_6502, OH_Implicit }, /* $9a */
{ "txy", 1, 0, CPU_65816, OH_Implicit }, /* $9b */
{ "stz", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $9c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $9d */
{ "stz", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $9e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $9f */
{ "ldy", 2, 0, CPU_6502, OH_Immidiate }, /* $a0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $a1 */
{ "ldx", 2, 0, CPU_6502, OH_Immidiate }, /* $a2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelative }, /* $a3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $a7 */
{ "tay", 1, 0, CPU_6502, OH_Implicit }, /* $a8 */
{ "lda", 2, 0, CPU_6502, OH_Immidiate }, /* $a9 */
{ "tax", 1, 0, CPU_6502, OH_Implicit }, /* $aa */
{ "plb", 1, 0, CPU_65816, OH_Implicit }, /* $ab */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ac */
{ "lda", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ad */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ae */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $af */
{ "bcs", 2, lfLabel, CPU_6502, OH_Relative }, /* $b0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $b1 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $b2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $b3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $b6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $b7 */
{ "clv", 1, 0, CPU_6502, OH_Implicit }, /* $b8 */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $b9 */
{ "tsx", 1, 0, CPU_6502, OH_Implicit }, /* $ba */
{ "tyx", 1, 0, CPU_65816, OH_Implicit }, /* $bb */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bc */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bd */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $be */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $bf */
{ "cpy", 2, 0, CPU_6502, OH_Immidiate }, /* $c0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $c1 */
{ "rep", 2, 0, CPU_65816, OH_Immidiate }, /* $c2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelative }, /* $c3 */
{ "cpy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $c7 */
{ "iny", 1, 0, CPU_6502, OH_Implicit }, /* $c8 */
{ "cmp", 2, 0, CPU_6502, OH_Immidiate }, /* $c9 */
{ "dex", 1, 0, CPU_6502, OH_Implicit }, /* $ca */
{ "wai", 1, 0, CPU_65816, OH_Implicit }, /* $cb */
{ "cpy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ce */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $cf */
{ "bne", 2, lfLabel, CPU_6502, OH_Relative }, /* $d0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $d2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $d3 */
{ "pei", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $d4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $d7 */
{ "cld", 1, 0, CPU_6502, OH_Implicit }, /* $d8 */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $d9 */
{ "phx", 1, 0, CPU_65816, OH_Implicit }, /* $da */
{ "stp", 1, 0, CPU_65816, OH_Implicit }, /* $db */
{ "jml", 3, lfLabel, CPU_65816, OH_AbsoluteIndirect }, /* $dc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $dd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $de */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $df */
{ "cpx", 2, 0, CPU_6502, OH_Immidiate }, /* $e0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $e1 */
{ "sep", 2, 0, CPU_65816, OH_Immidiate }, /* $e2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelative }, /* $e3 */
{ "cpx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $e7 */
{ "inx", 1, 0, CPU_6502, OH_Implicit }, /* $e8 */
{ "sbc", 2, 0, CPU_6502, OH_Immidiate }, /* $e9 */
{ "nop", 1, 0, CPU_6502, OH_Implicit }, /* $ea */
{ "xba", 1, 0, CPU_65816, OH_Implicit }, /* $eb */
{ "cpx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ec */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ed */
{ "inc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ee */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $ef */
{ "beq", 2, lfLabel, CPU_6502, OH_Relative }, /* $f0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $f1 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $f2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $f3 */
{ "pea", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $f4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $f7 */
{ "sed", 1, 0, CPU_6502, OH_Implicit }, /* $f8 */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $f9 */
{ "plx", 1, 0, CPU_65816, OH_Implicit }, /* $fa */
{ "xce", 1, 0, CPU_65816, OH_Implicit }, /* $fb */
{ "jsr", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $fc */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fd */
{ "inc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fe */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $ff */
};

60
src/da65/opc65c02.h Normal file
View File

@ -0,0 +1,60 @@
/*****************************************************************************/
/* */
/* opc65c02.h */
/* */
/* 65C02 opcode description table */
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
#ifndef OPC65C02_H
#define OPC65C02_H
#include "opcdesc.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Descriptions for all opcodes */
extern const OpcDesc OpcTable_65C02[256];
/* End of opc65c02.h */
#endif

309
src/da65/opc65sc02.c Normal file
View File

@ -0,0 +1,309 @@
/*****************************************************************************/
/* */
/* opc65sc02.h */
/* */
/* 65SC02 opcode description table */
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
/* da65 */
#include "handler.h"
#include "opc65sc02.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Descriptions for all opcodes */
const OpcDesc OpcTable_65SC02[256] = {
{ "brk", 1, 0, CPU_6502, OH_Implicit }, /* $00 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $01 */
{ "cop", 2, 0, CPU_65816, OH_Implicit }, /* $02 */
{ "ora", 2, 0, CPU_65816, OH_StackRelative }, /* $03 */
{ "tsb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $04 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $05 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $06 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $07 */
{ "php", 1, 0, CPU_6502, OH_Implicit }, /* $08 */
{ "ora", 2, 0, CPU_6502, OH_Immidiate }, /* $09 */
{ "asl", 1, 0, CPU_6502, OH_Accumulator }, /* $0a */
{ "phd", 1, 0, CPU_65816, OH_Implicit }, /* $0b */
{ "tsb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $0c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $0e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $0f */
{ "bpl", 2, lfLabel, CPU_6502, OH_Relative }, /* $10 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $11 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $12 */
{ "ora", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $13 */
{ "trb", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $14 */
{ "ora", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $15 */
{ "asl", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $16 */
{ "ora", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $17 */
{ "clc", 1, 0, CPU_6502, OH_Implicit }, /* $18 */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $19 */
{ "inc", 1, 0, CPU_65816, OH_Accumulator }, /* $1a */
{ "tcs", 1, 0, CPU_65816, OH_Implicit }, /* $1b */
{ "trb", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $1c */
{ "ora", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1d */
{ "asl", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $1e */
{ "ora", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $1f */
{ "jsr", 3, lfLabel, CPU_6502, OH_Absolute }, /* $20 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $21 */
{ "jsl", 3, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $22 */
{ "and", 2, 0, CPU_65816, OH_StackRelative }, /* $23 */
{ "bit", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $24 */
{ "and", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $25 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $26 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $27 */
{ "plp", 1, 0, CPU_6502, OH_Implicit }, /* $28 */
{ "and", 2, 0, CPU_6502, OH_Immidiate }, /* $29 */
{ "rol", 1, 0, CPU_6502, OH_Accumulator }, /* $2a */
{ "pld", 1, 0, CPU_65816, OH_Implicit }, /* $2b */
{ "bit", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2c */
{ "and", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $2e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $2f */
{ "bmi", 2, lfLabel, CPU_6502, OH_Relative }, /* $30 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $31 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $32 */
{ "and", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $33 */
{ "bit", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $34 */
{ "and", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $35 */
{ "rol", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $36 */
{ "and", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $37 */
{ "sec", 1, 0, CPU_6502, OH_Implicit }, /* $38 */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $39 */
{ "dec", 1, 0, CPU_65816, OH_Accumulator }, /* $3a */
{ "tsc", 1, 0, CPU_65816, OH_Implicit }, /* $3b */
{ "bit", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $3c */
{ "and", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3d */
{ "rol", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $3e */
{ "and", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $3f */
{ "rti", 1, 0, CPU_6502, OH_Rts }, /* $40 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $41 */
{ "wdm", 2, 0, CPU_65816, OH_Implicit }, /* $42 */
{ "eor", 2, 0, CPU_65816, OH_StackRelative }, /* $43 */
{ "mvp", 3, 0, CPU_65816, OH_BlockMove }, /* $44 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $45 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $46 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $47 */
{ "pha", 1, 0, CPU_6502, OH_Implicit }, /* $48 */
{ "eor", 2, 0, CPU_6502, OH_Immidiate }, /* $49 */
{ "lsr", 1, 0, CPU_6502, OH_Accumulator }, /* $4a */
{ "phk", 1, 0, CPU_65816, OH_Implicit }, /* $4b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsolute }, /* $4c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $4e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $4f */
{ "bvc", 2, lfLabel, CPU_6502, OH_Relative }, /* $50 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $51 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $52 */
{ "eor", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $53 */
{ "mvn", 3, 0, CPU_65816, OH_BlockMove }, /* $54 */
{ "eor", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $55 */
{ "lsr", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $56 */
{ "eor", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $57 */
{ "cli", 1, 0, CPU_6502, OH_Implicit }, /* $58 */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $59 */
{ "phy", 1, 0, CPU_65816, OH_Implicit }, /* $5a */
{ "tcd", 1, 0, CPU_65816, OH_Implicit }, /* $5b */
{ "jml", 4, lfLabel, CPU_65816, OH_AbsoluteLong }, /* $5c */
{ "eor", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5d */
{ "lsr", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $5e */
{ "eor", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $5f */
{ "rts", 1, 0, CPU_6502, OH_Rts }, /* $60 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $61 */
{ "per", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $62 */
{ "adc", 2, 0, CPU_65816, OH_StackRelative }, /* $63 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $64 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $65 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $66 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $67 */
{ "pla", 1, 0, CPU_6502, OH_Implicit }, /* $68 */
{ "adc", 2, 0, CPU_6502, OH_Immidiate }, /* $69 */
{ "ror", 1, 0, CPU_6502, OH_Accumulator }, /* $6a */
{ "rtl", 1, 0, CPU_65816, OH_Implicit }, /* $6b */
{ "jmp", 3, lfLabel, CPU_6502, OH_JmpAbsoluteIndirect }, /* $6c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $6e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $6f */
{ "bvs", 2, lfLabel, CPU_6502, OH_Relative }, /* $70 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $71 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $72 */
{ "adc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $73 */
{ "stz", 2, lfUseLabel, CPU_65816, OH_DirectX }, /* $74 */
{ "adc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $75 */
{ "ror", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $76 */
{ "adc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $77 */
{ "sei", 1, 0, CPU_6502, OH_Implicit }, /* $78 */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $79 */
{ "ply", 1, 0, CPU_65816, OH_Implicit }, /* $7a */
{ "tdc", 1, 0, CPU_65816, OH_Implicit }, /* $7b */
{ "jmp", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $7c */
{ "adc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7d */
{ "ror", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $7e */
{ "adc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $7f */
{ "bra", 2, lfLabel, CPU_65816, OH_Relative }, /* $80 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $81 */
{ "brl", 3, lfLabel, CPU_65816, OH_RelativeLong }, /* $82 */
{ "sta", 2, 0, CPU_65816, OH_StackRelative }, /* $83 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $84 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $85 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $86 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $87 */
{ "dey", 1, 0, CPU_6502, OH_Implicit }, /* $88 */
{ "bit", 2, 0, CPU_65816, OH_Immidiate }, /* $89 */
{ "txa", 1, 0, CPU_6502, OH_Implicit }, /* $8a */
{ "phb", 1, 0, CPU_65816, OH_Implicit }, /* $8b */
{ "sty", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8d */
{ "stx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $8e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $8f */
{ "bcc", 2, lfLabel, CPU_6502, OH_Relative }, /* $90 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $91 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $92 */
{ "sta", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $93 */
{ "sty", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $94 */
{ "sta", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $95 */
{ "stx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $96 */
{ "sta", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $97 */
{ "tya", 1, 0, CPU_6502, OH_Implicit }, /* $98 */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $99 */
{ "txs", 1, 0, CPU_6502, OH_Implicit }, /* $9a */
{ "txy", 1, 0, CPU_65816, OH_Implicit }, /* $9b */
{ "stz", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $9c */
{ "sta", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $9d */
{ "stz", 3, lfUseLabel, CPU_65816, OH_AbsoluteX }, /* $9e */
{ "sta", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $9f */
{ "ldy", 2, 0, CPU_6502, OH_Immidiate }, /* $a0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $a1 */
{ "ldx", 2, 0, CPU_6502, OH_Immidiate }, /* $a2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelative }, /* $a3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $a6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $a7 */
{ "tay", 1, 0, CPU_6502, OH_Implicit }, /* $a8 */
{ "lda", 2, 0, CPU_6502, OH_Immidiate }, /* $a9 */
{ "tax", 1, 0, CPU_6502, OH_Implicit }, /* $aa */
{ "plb", 1, 0, CPU_65816, OH_Implicit }, /* $ab */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ac */
{ "lda", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ad */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ae */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $af */
{ "bcs", 2, lfLabel, CPU_6502, OH_Relative }, /* $b0 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $b1 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $b2 */
{ "lda", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $b3 */
{ "ldy", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b4 */
{ "lda", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $b5 */
{ "ldx", 2, lfUseLabel, CPU_6502, OH_DirectY }, /* $b6 */
{ "lda", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $b7 */
{ "clv", 1, 0, CPU_6502, OH_Implicit }, /* $b8 */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $b9 */
{ "tsx", 1, 0, CPU_6502, OH_Implicit }, /* $ba */
{ "tyx", 1, 0, CPU_65816, OH_Implicit }, /* $bb */
{ "ldy", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bc */
{ "lda", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $bd */
{ "ldx", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $be */
{ "lda", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $bf */
{ "cpy", 2, 0, CPU_6502, OH_Immidiate }, /* $c0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $c1 */
{ "rep", 2, 0, CPU_65816, OH_Immidiate }, /* $c2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelative }, /* $c3 */
{ "cpy", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $c6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $c7 */
{ "iny", 1, 0, CPU_6502, OH_Implicit }, /* $c8 */
{ "cmp", 2, 0, CPU_6502, OH_Immidiate }, /* $c9 */
{ "dex", 1, 0, CPU_6502, OH_Implicit }, /* $ca */
{ "wai", 1, 0, CPU_65816, OH_Implicit }, /* $cb */
{ "cpy", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $cd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ce */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $cf */
{ "bne", 2, lfLabel, CPU_6502, OH_Relative }, /* $d0 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $d2 */
{ "cmp", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $d3 */
{ "pei", 2, lfUseLabel, CPU_65816, OH_Direct }, /* $d4 */
{ "cmp", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d5 */
{ "dec", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $d6 */
{ "cmp", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $d7 */
{ "cld", 1, 0, CPU_6502, OH_Implicit }, /* $d8 */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $d9 */
{ "phx", 1, 0, CPU_65816, OH_Implicit }, /* $da */
{ "stp", 1, 0, CPU_65816, OH_Implicit }, /* $db */
{ "jml", 3, lfLabel, CPU_65816, OH_AbsoluteIndirect }, /* $dc */
{ "cmp", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $dd */
{ "dec", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $de */
{ "cmp", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $df */
{ "cpx", 2, 0, CPU_6502, OH_Immidiate }, /* $e0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectXIndirect }, /* $e1 */
{ "sep", 2, 0, CPU_65816, OH_Immidiate }, /* $e2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelative }, /* $e3 */
{ "cpx", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_Direct }, /* $e6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLong }, /* $e7 */
{ "inx", 1, 0, CPU_6502, OH_Implicit }, /* $e8 */
{ "sbc", 2, 0, CPU_6502, OH_Immidiate }, /* $e9 */
{ "nop", 1, 0, CPU_6502, OH_Implicit }, /* $ea */
{ "xba", 1, 0, CPU_65816, OH_Implicit }, /* $eb */
{ "cpx", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ec */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ed */
{ "inc", 3, lfUseLabel, CPU_6502, OH_Absolute }, /* $ee */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLong }, /* $ef */
{ "beq", 2, lfLabel, CPU_6502, OH_Relative }, /* $f0 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectIndirectY }, /* $f1 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirect }, /* $f2 */
{ "sbc", 2, 0, CPU_65816, OH_StackRelativeIndirectY}, /* $f3 */
{ "pea", 3, lfUseLabel, CPU_65816, OH_Absolute }, /* $f4 */
{ "sbc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f5 */
{ "inc", 2, lfUseLabel, CPU_6502, OH_DirectX }, /* $f6 */
{ "sbc", 2, lfUseLabel, CPU_65816, OH_DirectIndirectLongY }, /* $f7 */
{ "sed", 1, 0, CPU_6502, OH_Implicit }, /* $f8 */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteY }, /* $f9 */
{ "plx", 1, 0, CPU_65816, OH_Implicit }, /* $fa */
{ "xce", 1, 0, CPU_65816, OH_Implicit }, /* $fb */
{ "jsr", 3, lfLabel, CPU_65816, OH_AbsoluteXIndirect }, /* $fc */
{ "sbc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fd */
{ "inc", 3, lfUseLabel, CPU_6502, OH_AbsoluteX }, /* $fe */
{ "sbc", 4, lfUseLabel, CPU_65816, OH_AbsoluteLongX }, /* $ff */
};

60
src/da65/opc65sc02.h Normal file
View File

@ -0,0 +1,60 @@
/*****************************************************************************/
/* */
/* opc65sc02.h */
/* */
/* 65SC02 opcode description table */
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
#ifndef OPC65SC02_H
#define OPC65SC02_H
#include "opcdesc.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Descriptions for all opcodes */
extern const OpcDesc OpcTable_65SC02[256];
/* End of opc65sc02.h */
#endif

76
src/da65/opcdesc.h Normal file
View File

@ -0,0 +1,76 @@
/*****************************************************************************/
/* */
/* opcdesc.h */
/* */
/* Disassembler description for one opcode */
/* */
/* */
/* */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
#ifndef OPCDESC_H
#define OPCDESC_H
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Constants for LabelFlag */
enum {
lfNoLabel = 0x00, /* Don't use a label */
lfGenLabel = 0x01, /* Generate a label */
lfUseLabel = 0x02, /* Use a label if there is one */
lfLabel = lfUseLabel|lfGenLabel /* Generate and use a label */
};
/* Forward/typedef for struct OpcDesc */
typedef struct OpcDesc OpcDesc;
/* Type of pointer to a function that handles opcode output */
typedef void (*OpcHandler) (const OpcDesc*);
/* Description for one opcode */
struct OpcDesc {
char Mnemo [5]; /* Mnemonic */
unsigned char Size; /* Size of this command */
unsigned char LabelFlag; /* Generate/use label? */
unsigned char CPU; /* Available for which CPU? */
OpcHandler Handler; /* Handler routine */
};
/* End of opcdesc.h */
#endif

File diff suppressed because it is too large Load Diff

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -38,37 +38,33 @@
/* common */
#include "cpu.h"
/* da65 */
#include "opcdesc.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Constants for LabelFlag */
enum {
lfNoLabel = 0x00, /* Don't use a label */
lfGenLabel = 0x01, /* Generate a label */
lfUseLabel = 0x02, /* Use a label if there is one */
lfLabel = lfUseLabel|lfGenLabel /* Generate and use a label */
};
/* Forward/typedef for struct OpcDesc */
typedef struct OpcDesc OpcDesc;
/* Type of pointer to a function that handles opcode output */
typedef void (*OpcHandler) (const OpcDesc*);
/* Description for one opcode */
struct OpcDesc {
char Mnemo [4]; /* Mnemonic */
unsigned char Size; /* Size of this command */
unsigned char LabelFlag; /* Generate/use label? */
unsigned char CPU; /* Available for which CPU? */
OpcHandler Handler; /* Handler routine */
};
/* Descriptions for all opcodes */
extern const OpcDesc OpcTable[256];
extern const OpcDesc* OpcTable;
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void SetOpcTable (cpu_t CPU);
/* Set the correct opcode table for the given CPU */

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -40,6 +40,7 @@
#include <errno.h>
/* common */
#include "cpu.h"
#include "print.h"
#include "version.h"
@ -74,7 +75,7 @@ static void PageHeader (void)
/* Print a page header */
{
fprintf (F,
"; da65 V%u.%u.%u - (C) Copyright 2000 Ullrich von Bassewitz\n"
"; da65 V%u.%u.%u - (C) Copyright 2000-2003 Ullrich von Bassewitz\n"
"; Input file: %s\n"
"; Page: %u\n\n",
VER_MAJOR, VER_MINOR, VER_PATCH,
@ -268,3 +269,17 @@ void LineComment (unsigned PC, unsigned Count)
void OutputSettings (void)
/* Output CPU and other settings */
{
LineFeed ();
Indent (MIndent);
Output (".setcpu");
Indent (AIndent);
Output ("\"%s\"", CPUNames[CPU]);
LineFeed ();
LineFeed ();
}

View File

@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2000 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -85,6 +85,9 @@ void SeparatorLine (void);
void LineComment (unsigned PC, unsigned Count);
/* Add a line comment with the PC and data bytes */
void OutputSettings (void);
/* Output CPU and other settings */
/* End of output.h */