mirror of
https://github.com/marketideas/qasm.git
synced 2024-12-26 08:29:34 +00:00
fixed a few bugs, got more tests to pass, added some parms.json options
This commit is contained in:
parent
2f79abe461
commit
6e9eb6cfcc
11
.gitignore
vendored
11
.gitignore
vendored
@ -1,3 +1,14 @@
|
||||
**/build
|
||||
**/testdata1
|
||||
*.bin
|
||||
*.BIN
|
||||
*.a
|
||||
*.so
|
||||
Finder.Data
|
||||
test.s
|
||||
disk_commands.txt
|
||||
.vscode/browse*
|
||||
.vscode/book*
|
||||
|
||||
*.xcuserstate
|
||||
*.xcbkptlist
|
||||
|
28
asm.h
28
asm.h
@ -15,6 +15,8 @@
|
||||
#define SYNTAX_MPW 0x08
|
||||
#define SYNTAX_ORCA 0x10
|
||||
#define SYNTAX_CC65 0x20
|
||||
#define SYNTAX_LISA 0x40
|
||||
|
||||
#define SYNTAX_QASM (0x80 | SYNTAX_MERLIN)
|
||||
#define OPTION_ALLOW_A_OPERAND 0x0100
|
||||
#define OPTION_ALLOW_LOCAL 0x0200
|
||||
@ -23,7 +25,7 @@
|
||||
#define OPTION_NO_REPSEP 0x1000
|
||||
#define OPTION_CFG_REPSEP 0x2000
|
||||
#define OPTION_M32_VARS 0x4000
|
||||
|
||||
#define OPTION_M16_PLUS 0x8000
|
||||
|
||||
#define FLAG_FORCELONG 0x01
|
||||
#define FLAG_FORCEABS 0x02
|
||||
@ -201,6 +203,7 @@ public:
|
||||
std::string printoperand;
|
||||
std::string opcode;
|
||||
std::string opcodelower;
|
||||
std::string orig_operand;
|
||||
std::string operand;
|
||||
std::string operand_expr;
|
||||
std::string operand_expr2;
|
||||
@ -254,6 +257,7 @@ protected:
|
||||
public:
|
||||
uint32_t errorct;
|
||||
std::string filename;
|
||||
uint32_t format_flags;
|
||||
|
||||
TFileProcessor();
|
||||
virtual ~TFileProcessor();
|
||||
@ -267,18 +271,18 @@ public:
|
||||
virtual void setSyntax(uint32_t syn);
|
||||
};
|
||||
|
||||
class TImageProcessor : public TFileProcessor
|
||||
{
|
||||
protected:
|
||||
std::vector<MerlinLine> lines;
|
||||
|
||||
public:
|
||||
TImageProcessor();
|
||||
virtual ~TImageProcessor();
|
||||
virtual int doline(int lineno, std::string line);
|
||||
virtual void process(void);
|
||||
virtual void complete(void);
|
||||
};
|
||||
#define CONVERT_NONE 0x00
|
||||
#define CONVERT_LF 0x01
|
||||
#define CONVERT_CRLF 0x02
|
||||
#define CONVERT_COMPRESS 0x04
|
||||
#define CONVERT_HIGH 0x08
|
||||
#define CONVERT_MERLIN (CONVERT_HIGH|CONVERT_COMPRESS)
|
||||
#define CONVERT_LINUX (CONVERT_LF)
|
||||
#define CONVERT_WINDOWS (CONVERT_CRLF)
|
||||
#define CONVERT_APW (CONVERT_NONE)
|
||||
#define CONVERT_MPW (CONVERT_NONE)
|
||||
#define CONVERT_TEST (CONVERT_COMPRESS|CONVERT_LF)
|
||||
|
||||
class TMerlinConverter : public TFileProcessor
|
||||
{
|
||||
|
92
cider.cpp
92
cider.cpp
@ -1,3 +1,5 @@
|
||||
#ifdef CIDERPRESS
|
||||
|
||||
#include "asm.h"
|
||||
#include "eval.h"
|
||||
#include "psuedo.h"
|
||||
@ -7,6 +9,9 @@
|
||||
|
||||
#include <cider.h>
|
||||
#include <DiskImg.h>
|
||||
#include <util.h>
|
||||
|
||||
#undef CLASS
|
||||
#define CLASS CiderPress
|
||||
|
||||
using namespace DiskImgLib;
|
||||
@ -14,49 +19,76 @@ using DiskImgLib::DiskImg;
|
||||
|
||||
void dbgMessage(const char *file, int line, const char *msg)
|
||||
{
|
||||
|
||||
printf("DEBUG: %s\n",msg);
|
||||
if (isDebug()>0)
|
||||
{
|
||||
printf("DEBUG: %s\n",msg);
|
||||
}
|
||||
}
|
||||
|
||||
CLASS::CLASS()
|
||||
CLASS::CLASS() : TFileProcessor()
|
||||
{
|
||||
if (!Global::GetAppInitCalled())
|
||||
{
|
||||
DiskImgLib::Global::SetDebugMsgHandler(dbgMessage);
|
||||
if (!Global::GetAppInitCalled())
|
||||
{
|
||||
DiskImgLib::Global::SetDebugMsgHandler(dbgMessage);
|
||||
DiskImgLib::Global::AppInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
CLASS::~CLASS()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
int CLASS::RunScript(string path)
|
||||
{
|
||||
int res=-1;
|
||||
int res=-1;
|
||||
|
||||
|
||||
|
||||
return(res);
|
||||
|
||||
return(res);
|
||||
}
|
||||
|
||||
int CLASS::CreateVolume(string OSName, string VolName, uint64_t size, CIDER_VOLFORMAT format)
|
||||
{
|
||||
int interr=-1;
|
||||
DIError err;
|
||||
DiskImg *img=new DiskImg();
|
||||
if (format==CP_PRODOS)
|
||||
{
|
||||
int interr=-1;
|
||||
DIError err;
|
||||
DiskImg *img=new DiskImg();
|
||||
if (format==CP_PRODOS)
|
||||
{
|
||||
|
||||
err=img->CreateImage(OSName.c_str(),VolName.c_str(),
|
||||
DiskImg::kOuterFormatNone,
|
||||
DiskImg::kFileFormat2MG,
|
||||
DiskImg::kPhysicalFormatSectors,
|
||||
NULL,
|
||||
DiskImg::kSectorOrderProDOS,
|
||||
DiskImg::kFormatGenericProDOSOrd,
|
||||
size/256,
|
||||
false
|
||||
);
|
||||
printf("create error: %d\n",err);
|
||||
if (err== kDIErrNone )
|
||||
interr=0;
|
||||
}
|
||||
return (interr);
|
||||
err=img->CreateImage(OSName.c_str(),VolName.c_str(),
|
||||
DiskImg::kOuterFormatNone,
|
||||
DiskImg::kFileFormat2MG,
|
||||
DiskImg::kPhysicalFormatSectors,
|
||||
NULL,
|
||||
DiskImg::kSectorOrderProDOS,
|
||||
DiskImg::kFormatGenericProDOSOrd,
|
||||
size/256,
|
||||
false
|
||||
);
|
||||
printf("create error: %d\n",err);
|
||||
if (err== kDIErrNone )
|
||||
{
|
||||
interr=0;
|
||||
}
|
||||
}
|
||||
return (interr);
|
||||
}
|
||||
|
||||
int CLASS::doline(int lineno, std::string line)
|
||||
{
|
||||
printf("%05d: %s\n",lineno,line.c_str());
|
||||
return(0);
|
||||
}
|
||||
void CLASS::process(void)
|
||||
{
|
||||
|
||||
}
|
||||
void CLASS::complete(void)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#undef CLASS
|
||||
|
||||
#endif
|
22
cider.h
22
cider.h
@ -1,3 +1,4 @@
|
||||
#ifdef CIDERPRESS
|
||||
#pragma once
|
||||
|
||||
#include "asm.h"
|
||||
@ -10,13 +11,20 @@
|
||||
|
||||
#define CLASS CiderPress
|
||||
|
||||
enum CIDER_VOLFORMAT {CP_PRODOS,CP_HFS};
|
||||
class CLASS
|
||||
enum CIDER_VOLFORMAT {CP_PRODOS,CP_HFS};
|
||||
class CLASS : public TFileProcessor
|
||||
{
|
||||
public:
|
||||
CLASS();
|
||||
int CreateVolume(string OSName, string VolName, uint64_t size, CIDER_VOLFORMAT format);
|
||||
int RunScript(string path);
|
||||
protected:
|
||||
std::vector<MerlinLine> lines;
|
||||
public:
|
||||
CLASS();
|
||||
virtual ~CLASS();
|
||||
int CreateVolume(string OSName, string VolName, uint64_t size, CIDER_VOLFORMAT format);
|
||||
int RunScript(string path);
|
||||
virtual int doline(int lineno, std::string line);
|
||||
virtual void process(void);
|
||||
virtual void complete(void);
|
||||
};
|
||||
|
||||
#undef CLASS
|
||||
#undef CLASS
|
||||
#endif
|
2
eval.cpp
2
eval.cpp
@ -607,7 +607,7 @@ int CLASS::evaluate(std::string & e, int64_t &res, uint8_t &_shiftmode)
|
||||
std::string expr = Poco::trim(e);
|
||||
expr += " "; // add a space at end to make parsing easier
|
||||
|
||||
if (isDebug() >= 4)
|
||||
if (isDebug() >= 1)
|
||||
{
|
||||
printf("eval: expression: |%s|\n", expr.c_str());
|
||||
}
|
||||
|
@ -22,7 +22,9 @@ for S in $SRC ; do
|
||||
S1=${S1/.s/}
|
||||
|
||||
cd ./testdata
|
||||
merlin32$X . $S 2>/dev/null >/dev/null
|
||||
#merlin32$X . $S 2>/dev/null >/dev/null
|
||||
merlin32$X -V . $S
|
||||
|
||||
#merlin32 . $S 2>/dev/null
|
||||
|
||||
R=?$
|
||||
|
@ -12,6 +12,7 @@ void CLASS::setOpcode(MerlinLine &line, uint8_t op)
|
||||
uint8_t m = opCodeCompatibility[op];
|
||||
if ((m > 0) && (cpumode < MODE_65C02)) // if the instruction is non-zero, and we are in 6502 base mode, error
|
||||
{
|
||||
//printf("incompatable: %02X %02X\n",op,m);
|
||||
if (line.errorcode == 0) // don't replace other errors
|
||||
{
|
||||
line.setError(errIncompatibleOpcode);
|
||||
@ -706,7 +707,8 @@ int CLASS::doBase6502(MerlinLine & line, TSymbol & sym)
|
||||
|
||||
if (err) // not a 6502 address mode
|
||||
{
|
||||
if (cpumode >= MODE_65816)
|
||||
//if (cpumode >= MODE_65816)
|
||||
if (cpumode >= MODE_65C02)
|
||||
{
|
||||
cc = 0x03;
|
||||
err = false;
|
||||
@ -950,6 +952,7 @@ void CLASS::insertOpcodes(void)
|
||||
pushopcode("MVP", 0x01, 0, OPHANDLER(&CLASS::doMVN));
|
||||
pushopcode("NOP", 0xEA, 0, OPHANDLER(&CLASS::doBYTE));
|
||||
pushopcode("ORA", 0x00, OP_STD | OP_A, OPHANDLER(&CLASS::doBase6502));
|
||||
|
||||
pushopcode("PEA", 0xF4, 2, OPHANDLER(&CLASS::doAddress));
|
||||
pushopcode("PEI", 0xD4, 1, OPHANDLER(&CLASS::doAddress));
|
||||
pushopcode("PER", 0x62, 2, OPHANDLER(&CLASS::doPER));
|
||||
|
28
parms.json
28
parms.json
@ -1,6 +1,7 @@
|
||||
{
|
||||
"version": "1.1",
|
||||
"general": {
|
||||
"color_output": true,
|
||||
"prefix": [
|
||||
{
|
||||
"0": "${PWD}"
|
||||
@ -16,16 +17,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"assembler": {
|
||||
"cpu_default": "6502",
|
||||
"syntax": "merlin",
|
||||
"listmode": "on"
|
||||
"asm": {
|
||||
"syntax": "merlin16plus", //merlin8, merlin16, merlin16plus,merlin32
|
||||
"cpu": "M6502",
|
||||
"startmx": 3,
|
||||
"listmode": "on",
|
||||
"casesend": true,
|
||||
"lst": false,
|
||||
"showmx": true,
|
||||
"allowduplicate": true,
|
||||
"trackrep": false,
|
||||
"merlinerrors": true,
|
||||
"m32vars": false,
|
||||
"allowA": true,
|
||||
"allowLocal": true,
|
||||
"allowColon": true,
|
||||
"repsep": "force", //force,no,cfg
|
||||
"linebytes": 4,
|
||||
"line2bytes": 8
|
||||
},
|
||||
"linker": {},
|
||||
"format": {
|
||||
"tabs": "12,18,30"
|
||||
},
|
||||
"diskimg": {
|
||||
"script": "./disk_commands.txt"
|
||||
"tabs": "12,18,30,48"
|
||||
}
|
||||
}
|
@ -944,6 +944,10 @@ int CLASS::doASC(T65816Asm &a, MerlinLine &line, TSymbol &opinfo)
|
||||
|
||||
if (dci && (i == lastdelimidx))
|
||||
{
|
||||
// SGQ BUG - Merlin16+ does it like Merlin32 and now does the last
|
||||
// byte not the way merlin816 and earlier do it documented below.
|
||||
// use OPTION_M16_PLUS when implemented.
|
||||
|
||||
//lr - Merlin only toggles the high bit of string chars, not hex values
|
||||
// 8D,'Hello',8D,'there',8D becomes 8D 48 65 6C 6C 6F 8D 74 68 65 72 E5
|
||||
//
|
||||
|
54
qasm.cpp
54
qasm.cpp
@ -20,7 +20,7 @@ programOption PAL::appOptions[] =
|
||||
{ "debug", "d", "enable debug info (repeat for more verbosity)", "", false, true},
|
||||
#endif
|
||||
//{ "config", "f", "load configuration data from a <file>", "<file>", false, false},
|
||||
{ "exec", "x", "execute a command [asm, link, reformat, script] default=asm", "<command>", false, false},
|
||||
{ "exec", "x", "execute a command [asm, link, format, script] default=asm", "<command>", false, false},
|
||||
{ "objfile", "o", "write output to file", "<file>", false, false},
|
||||
{ "syntax", "s", "enforce syntax of other assembler [qasm, merlin, merlin32, ORCA, APW, MPW, CC65]", "<syntax>", false, false},
|
||||
|
||||
@ -101,7 +101,7 @@ int CLASS::runCommandLineApp(void)
|
||||
syn=Poco::toUpper(syn);
|
||||
syn=Poco::trim(syn);
|
||||
syntax=SYNTAX_QASM;
|
||||
if ((syn=="MERLIN") || (syn=="MERLIN16") || (syn=="MERLIN8") || (syn=="MERLIN16+"))
|
||||
if ((syn=="MERLIN") || (syn=="MERLIN16") || (syn=="MERLIN8") || (syn=="MERLIN16PLUS"))
|
||||
{
|
||||
syntax=SYNTAX_MERLIN;
|
||||
}
|
||||
@ -130,7 +130,7 @@ int CLASS::runCommandLineApp(void)
|
||||
syntax=SYNTAX_CC65;
|
||||
}
|
||||
|
||||
printf("SYNTAX: |%s|\n",syn.c_str());
|
||||
//printf("SYNTAX: |%s|\n",syn.c_str());
|
||||
|
||||
try
|
||||
{
|
||||
@ -148,6 +148,7 @@ int CLASS::runCommandLineApp(void)
|
||||
|
||||
for (ArgVec::const_iterator it = commandargs.begin(); it != commandargs.end(); ++it)
|
||||
{
|
||||
int32_t format_flags=CONVERT_LINUX;
|
||||
Poco::File fn(*it);
|
||||
int x;
|
||||
std::string p = fn.path();
|
||||
@ -158,10 +159,50 @@ int CLASS::runCommandLineApp(void)
|
||||
|
||||
std::string cmd = Poco::toUpper(getConfig("option.exec", "asm"));
|
||||
|
||||
//printf("DEBUG=%d\n",isDebug());
|
||||
Poco::StringTokenizer toks(cmd,"-");
|
||||
if (toks.count()>1)
|
||||
{
|
||||
if (toks[0]=="FORMAT")
|
||||
{
|
||||
if (toks[1]=="LINUX")
|
||||
{
|
||||
format_flags=CONVERT_LINUX;
|
||||
}
|
||||
else if (toks[1]=="WINDOWS")
|
||||
{
|
||||
format_flags=CONVERT_WINDOWS;
|
||||
}
|
||||
else if (toks[1]=="MERLIN")
|
||||
{
|
||||
format_flags=CONVERT_MERLIN;
|
||||
}
|
||||
else if (toks[1]=="APW")
|
||||
{
|
||||
format_flags=CONVERT_APW;
|
||||
}
|
||||
else if (toks[1]=="MPW")
|
||||
{
|
||||
format_flags=CONVERT_MPW;
|
||||
}
|
||||
else if (toks[1]=="MAC")
|
||||
{
|
||||
format_flags=CONVERT_LINUX;
|
||||
}
|
||||
else if (toks[1]=="CC65")
|
||||
{
|
||||
format_flags=CONVERT_LINUX;
|
||||
}
|
||||
else if (toks[1]=="COMPRESS")
|
||||
{
|
||||
format_flags=CONVERT_TEST;
|
||||
}
|
||||
|
||||
cmd=toks[0];
|
||||
}
|
||||
}
|
||||
if (cmd.length() > 0)
|
||||
{
|
||||
if (cmd == "REFORMAT")
|
||||
if (cmd == "FORMAT")
|
||||
{
|
||||
res = 0;
|
||||
t = new TMerlinConverter();
|
||||
@ -171,6 +212,7 @@ int CLASS::runCommandLineApp(void)
|
||||
{
|
||||
t->init();
|
||||
t->setSyntax(syntax);
|
||||
t->format_flags=format_flags;
|
||||
|
||||
std::string f = path.toString();
|
||||
t->filename = f;
|
||||
@ -233,7 +275,7 @@ int CLASS::runCommandLineApp(void)
|
||||
else if (cmd == "SCRIPT")
|
||||
{
|
||||
res = 0;
|
||||
t = new TImageProcessor();
|
||||
t = new CiderPress();
|
||||
if (t!=NULL)
|
||||
{
|
||||
try
|
||||
|
4
testdata/1000-allops-value-65816.S
vendored
4
testdata/1000-allops-value-65816.S
vendored
@ -2,6 +2,10 @@
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
xc off
|
||||
xc
|
||||
xc
|
||||
mx %00
|
||||
ZP EQU $FF
|
||||
ABS EQU $FEFF
|
||||
LONG EQU $FDFEFF
|
||||
|
4
testdata/1001-allops-zero-65816.S
vendored
4
testdata/1001-allops-zero-65816.S
vendored
@ -3,6 +3,10 @@
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
xc off
|
||||
xc
|
||||
xc
|
||||
mx %00
|
||||
ZP EQU $00
|
||||
ABS EQU $0000
|
||||
LONG EQU $000000
|
||||
|
196
testdata/1002-embedded-instructions.S
vendored
196
testdata/1002-embedded-instructions.S
vendored
@ -1,110 +1,114 @@
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
org $1000
|
||||
xc off
|
||||
xc
|
||||
xc
|
||||
mx %11
|
||||
org $1000
|
||||
|
||||
; 65816 mode with short regs
|
||||
clc
|
||||
xce
|
||||
sep #$30
|
||||
mx %11
|
||||
; 65816 mode with short regs
|
||||
clc
|
||||
xce
|
||||
sep #$30
|
||||
mx %11
|
||||
|
||||
jsr test1
|
||||
jsr test2
|
||||
jsr test3
|
||||
jsr test4
|
||||
jsr test5
|
||||
rts
|
||||
jsr test1
|
||||
jsr test2
|
||||
jsr test3
|
||||
jsr test4
|
||||
jsr test5
|
||||
rts
|
||||
|
||||
; TEST #1: simple example
|
||||
test1 lda #$00
|
||||
dfb $2c ;BIT abs
|
||||
:inner lda #$01
|
||||
beq :inner
|
||||
rts
|
||||
; TEST #1: simple example
|
||||
test1 lda #$00
|
||||
dfb $2c ;BIT abs
|
||||
:inner lda #$01
|
||||
beq :inner
|
||||
rts
|
||||
|
||||
; TEST #2: embedded with break path
|
||||
;
|
||||
; Example inspired by incorrect analysis...
|
||||
;
|
||||
; The code analyzer sees:
|
||||
; beq {+03} ;jumps to the $8f
|
||||
; lda #$00
|
||||
; brk $8f
|
||||
; and stops, then pursues the branch. If we try to walk from top
|
||||
; to bottom, skipping forward by the full length of an instruction,
|
||||
; we'll appear to find ourselves in the middle of an embedded
|
||||
; instruction.
|
||||
;
|
||||
; This is different from the typical embedded instruction,
|
||||
; where the inner is contained entirely within the outer.
|
||||
test2 sep #$30 ;short regs
|
||||
mx %00 ;pretend they're long
|
||||
; TEST #2: embedded with break path
|
||||
;
|
||||
; Example inspired by incorrect analysis...
|
||||
;
|
||||
; The code analyzer sees:
|
||||
; beq {+03} ;jumps to the $8f
|
||||
; lda #$00
|
||||
; brk $8f
|
||||
; and stops, then pursues the branch. If we try to walk from top
|
||||
; to bottom, skipping forward by the full length of an instruction,
|
||||
; we'll appear to find ourselves in the middle of an embedded
|
||||
; instruction.
|
||||
;
|
||||
; This is different from the typical embedded instruction,
|
||||
; where the inner is contained entirely within the outer.
|
||||
test2 sep #$30 ;short regs
|
||||
mx %00 ;pretend they're long
|
||||
|
||||
lda $00 ;load something to scramble flags
|
||||
beq :store
|
||||
lda #$0000
|
||||
:store stal $012345
|
||||
rts
|
||||
lda $00 ;load something to scramble flags
|
||||
beq :store
|
||||
lda #$0000
|
||||
:store stal $012345
|
||||
rts
|
||||
|
||||
; TEST #3: embedded with non-instruction byte
|
||||
;
|
||||
; The code analyzer sees two paths, involving the three bytes.
|
||||
; The first is the three-byte JSR, the second is the one-byte
|
||||
; RTS. The third NOP byte is never "executed" by the analyzer,
|
||||
; but because of the way we display embedded instructions it
|
||||
; gets put on its own line. Since it's not an instruction start
|
||||
; or a data item, things get confused. (This is referred to as
|
||||
; an "embedded orphan" in the code.)
|
||||
; TEST #3: embedded with non-instruction byte
|
||||
;
|
||||
; The code analyzer sees two paths, involving the three bytes.
|
||||
; The first is the three-byte JSR, the second is the one-byte
|
||||
; RTS. The third NOP byte is never "executed" by the analyzer,
|
||||
; but because of the way we display embedded instructions it
|
||||
; gets put on its own line. Since it's not an instruction start
|
||||
; or a data item, things get confused. (This is referred to as
|
||||
; an "embedded orphan" in the code.)
|
||||
|
||||
test3 dfb $20 ;JSR
|
||||
:mid dfb $60 ;RTS
|
||||
dfb $ea ;NOP
|
||||
bra :mid
|
||||
test3 dfb $20 ;JSR
|
||||
:mid dfb $60 ;RTS
|
||||
dfb $ea ;NOP
|
||||
bra :mid
|
||||
|
||||
|
||||
; TEST #4: overlapping chain
|
||||
;
|
||||
; Each BIT instruction is three bytes, and each byte is a branch target,
|
||||
; so we get a string of embedded instructions.
|
||||
; TEST #4: overlapping chain
|
||||
;
|
||||
; Each BIT instruction is three bytes, and each byte is a branch target,
|
||||
; so we get a string of embedded instructions.
|
||||
test4
|
||||
:bits hex 2c2c2c2c2c2c2c2c2ceaea
|
||||
asl
|
||||
bcc :bits
|
||||
asl
|
||||
bcc :bits+1
|
||||
asl
|
||||
bcc :bits+2
|
||||
asl
|
||||
bcc :bits+3
|
||||
asl
|
||||
bcc :bits+4
|
||||
asl
|
||||
bcc :bits+5
|
||||
asl
|
||||
bcc :bits+6
|
||||
asl
|
||||
bcc :bits+7
|
||||
asl
|
||||
bcc :bits+8
|
||||
asl
|
||||
bcc :bits+9
|
||||
rts
|
||||
:bits hex 2c2c2c2c2c2c2c2c2ceaea
|
||||
asl
|
||||
bcc :bits
|
||||
asl
|
||||
bcc :bits+1
|
||||
asl
|
||||
bcc :bits+2
|
||||
asl
|
||||
bcc :bits+3
|
||||
asl
|
||||
bcc :bits+4
|
||||
asl
|
||||
bcc :bits+5
|
||||
asl
|
||||
bcc :bits+6
|
||||
asl
|
||||
bcc :bits+7
|
||||
asl
|
||||
bcc :bits+8
|
||||
asl
|
||||
bcc :bits+9
|
||||
rts
|
||||
|
||||
; TEST #5: another overlap
|
||||
;
|
||||
; Trying to be a little different.
|
||||
test5 dfb $2c
|
||||
:mid1 nop
|
||||
hex ad
|
||||
:mid2 lda $00
|
||||
asl
|
||||
bcc :mid1
|
||||
asl
|
||||
bcc :mid2
|
||||
; TEST #5: another overlap
|
||||
;
|
||||
; Trying to be a little different.
|
||||
test5 dfb $2c
|
||||
:mid1 nop
|
||||
hex ad
|
||||
:mid2 lda $00
|
||||
asl
|
||||
bcc :mid1
|
||||
asl
|
||||
bcc :mid2
|
||||
|
||||
; TEST #6: "embedded" off the end of the file
|
||||
dfb $af ;ldal
|
||||
; TEST #6: "embedded" off the end of the file
|
||||
dfb $af ;ldal
|
||||
|
||||
|
4
testdata/1003-flags-and-branches.S
vendored
4
testdata/1003-flags-and-branches.S
vendored
@ -2,7 +2,9 @@
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
xc off
|
||||
xc
|
||||
xc
|
||||
org $1000
|
||||
clc
|
||||
xce
|
||||
|
10
testdata/2000-allops-value-6502.S
vendored
10
testdata/2000-allops-value-6502.S
vendored
@ -1,8 +1,8 @@
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
xc off
|
||||
ZP EQU $FF
|
||||
ABS EQU $FEFF
|
||||
|
||||
|
4
testdata/2002-allops-value-65C02.S
vendored
4
testdata/2002-allops-value-65C02.S
vendored
@ -2,7 +2,9 @@
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
xc off
|
||||
xc
|
||||
;xc
|
||||
ZP EQU $FF
|
||||
ABS EQU $FEFF
|
||||
|
||||
|
4
testdata/2003-allops-zero-65C02.S
vendored
4
testdata/2003-allops-zero-65C02.S
vendored
@ -2,7 +2,9 @@
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
xc off
|
||||
xc
|
||||
|
||||
ZP EQU $00
|
||||
ABS EQU $0000
|
||||
|
||||
|
1
testdata/3008-macro-strings.S
vendored
1
testdata/3008-macro-strings.S
vendored
@ -12,3 +12,4 @@ xx mac
|
||||
xx "hello"
|
||||
xx 'abc',00
|
||||
xx ff
|
||||
|
||||
|
42
testdata/allops-common-6502.S
vendored
42
testdata/allops-common-6502.S
vendored
@ -1,7 +1,7 @@
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
ORG $1000
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
NOP
|
||||
NOP
|
||||
NOP
|
||||
BRK ZP ;$00
|
||||
BRK ZP ;$00
|
||||
PostBRK ORA (ZP,X)
|
||||
DFB $02
|
||||
PostH02 DFB $03,ZP
|
||||
@ -40,7 +40,7 @@ PostH02 DFB $03,ZP
|
||||
ORA: ABS
|
||||
ASL: ABS
|
||||
DFB $0F,#<ABS,#>ABS
|
||||
BPL PostBPL ;$10
|
||||
BPL PostBPL ;$10
|
||||
PostBPL ORA (ZP),Y
|
||||
DFB $12
|
||||
PostH12 DFB $13,ZP
|
||||
@ -56,7 +56,7 @@ PostH12 DFB $13,ZP
|
||||
ORA: ABS,X
|
||||
ASL: ABS,X
|
||||
DFB $1F,#<ABS,#>ABS
|
||||
JSR ABS ;$20
|
||||
JSR ABS ;$20
|
||||
AND (ZP,X)
|
||||
DFB $22
|
||||
PostH22 DFB $23,ZP
|
||||
@ -72,7 +72,7 @@ PostH22 DFB $23,ZP
|
||||
AND: ABS
|
||||
ROL: ABS
|
||||
DFB $2F,#<ABS,#>ABS
|
||||
BMI PostBMI ;$30
|
||||
BMI PostBMI ;$30
|
||||
PostBMI AND (ZP),Y
|
||||
DFB $32
|
||||
PostH32 DFB $33,ZP
|
||||
@ -84,11 +84,11 @@ PostH32 DFB $33,ZP
|
||||
AND: ABS,Y
|
||||
DFB $3A
|
||||
DFB $3B,#<ABS,#>ABS
|
||||
BIT: ABS,X
|
||||
;BIT: ABS,X // not available on standard 6502 (but is on 65C02)
|
||||
AND: ABS,X
|
||||
ROL: ABS,X
|
||||
DFB $3F,#<ABS,#>ABS
|
||||
RTI ;$40
|
||||
RTI ;$40
|
||||
PostRTI EOR (ZP,X)
|
||||
DFB $42
|
||||
PostH42 DFB $43,ZP
|
||||
@ -104,7 +104,7 @@ PostH42 DFB $43,ZP
|
||||
PostJMP EOR: ABS
|
||||
LSR: ABS
|
||||
DFB $4f,#<ABS,#>ABS
|
||||
BVC PostBVC ;$50
|
||||
BVC PostBVC ;$50
|
||||
PostBVC EOR (ZP),Y
|
||||
DFB $52
|
||||
PostH52 DFB $53,ZP
|
||||
@ -120,7 +120,7 @@ PostH52 DFB $53,ZP
|
||||
EOR: ABS,X
|
||||
LSR: ABS,X
|
||||
DFB $5F,#<ABS,#>ABS
|
||||
RTS ;$60
|
||||
RTS ;$60
|
||||
PostRTS ADC (ZP,X)
|
||||
DFB $62
|
||||
PostH62 DFB $63,ZP
|
||||
@ -136,7 +136,7 @@ PostH62 DFB $63,ZP
|
||||
PostJMPI ADC: ABS
|
||||
ROR: ABS
|
||||
DFB $6F,#<ABS,#>ABS
|
||||
BVS PostBVS ;$70
|
||||
BVS PostBVS ;$70
|
||||
PostBVS ADC (ZP),Y
|
||||
DFB $72
|
||||
PostH72 DFB $73,ZP
|
||||
@ -152,7 +152,7 @@ PostH72 DFB $73,ZP
|
||||
ADC: ABS,X
|
||||
ROR: ABS,X
|
||||
DFB $7F,#<ABS,#>ABS
|
||||
DFB $80,ZP ;$80
|
||||
DFB $80,ZP ;$80
|
||||
STA (ZP,X)
|
||||
DFB $82,ZP
|
||||
DFB $83,ZP
|
||||
@ -168,7 +168,7 @@ PostH72 DFB $73,ZP
|
||||
STA: ABS
|
||||
STX: ABS
|
||||
DFB $8F,#<ABS,#>ABS
|
||||
BCC PostBCC ;$90
|
||||
BCC PostBCC ;$90
|
||||
PostBCC STA (ZP),Y
|
||||
DFB $92
|
||||
PostH92 DFB $93,ZP
|
||||
@ -184,7 +184,7 @@ PostH92 DFB $93,ZP
|
||||
STA: ABS,X
|
||||
DFB $9E,#<ABS,#>ABS
|
||||
DFB $9F,#<ABS,#>ABS
|
||||
LDY #ZP ;$A0
|
||||
LDY #ZP ;$A0
|
||||
LDA (ZP,X)
|
||||
LDX #ZP
|
||||
DFB $A3,ZP
|
||||
@ -200,7 +200,7 @@ PostH92 DFB $93,ZP
|
||||
LDA: ABS
|
||||
LDX: ABS
|
||||
DFB $AF,#<ABS,#>ABS
|
||||
BCS PostBCS ;$B0
|
||||
BCS PostBCS ;$B0
|
||||
PostBCS LDA (ZP),Y
|
||||
DFB $B2
|
||||
PostHB2 DFB $B3,ZP
|
||||
@ -216,7 +216,7 @@ PostHB2 DFB $B3,ZP
|
||||
LDA: ABS,X
|
||||
LDX: ABS,Y
|
||||
DFB $BF,#<ABS,#>ABS
|
||||
CPY #ZP ;$C0
|
||||
CPY #ZP ;$C0
|
||||
CMP (ZP,X)
|
||||
DFB $C2,ZP
|
||||
DFB $C3,ZP
|
||||
@ -232,7 +232,7 @@ PostHB2 DFB $B3,ZP
|
||||
CMP: ABS
|
||||
DEC: ABS
|
||||
DFB $CF,#<ABS,#>ABS
|
||||
BNE PostBNE ;$D0
|
||||
BNE PostBNE ;$D0
|
||||
PostBNE CMP (ZP),Y
|
||||
DFB $D2
|
||||
PostHD2 DFB $D3,ZP
|
||||
@ -248,7 +248,7 @@ PostHD2 DFB $D3,ZP
|
||||
L11FC CMP: ABS,X
|
||||
DEC: ABS,X
|
||||
DFB $DF,#<ABS,#>ABS
|
||||
CPX #ZP ;$E0
|
||||
CPX #ZP ;$E0
|
||||
SBC (ZP,X)
|
||||
DFB $E2,ZP
|
||||
DFB $E3,ZP
|
||||
@ -264,7 +264,7 @@ L11FC CMP: ABS,X
|
||||
SBC: ABS
|
||||
INC: ABS
|
||||
DFB $EF,#<ABS,#>ABS
|
||||
BEQ PostBEQ ;$F0
|
||||
BEQ PostBEQ ;$F0
|
||||
PostBEQ SBC (ZP),Y
|
||||
DFB $F2
|
||||
PostHF2 DFB $F3,ZP
|
||||
|
1
testdata/allops-common-65816.S
vendored
1
testdata/allops-common-65816.S
vendored
@ -5,6 +5,7 @@
|
||||
|
||||
ORG $1000
|
||||
|
||||
mx %00
|
||||
SEC
|
||||
XCE
|
||||
JSR L101F
|
||||
|
1
testdata/allops-common-65C02.S
vendored
1
testdata/allops-common-65C02.S
vendored
@ -1,6 +1,5 @@
|
||||
; Copyright 2018 faddenSoft. All Rights Reserved.
|
||||
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
||||
;
|
||||
; Assembler: Merlin 32
|
||||
|
||||
ORG $1000
|
||||
|
Loading…
Reference in New Issue
Block a user