2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* macpack.c */
|
|
|
|
/* */
|
|
|
|
/* Predefined macro packages for the ca65 macroassembler */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* (C) 1998 Ullrich von Bassewitz */
|
|
|
|
/* Wacholderweg 14 */
|
|
|
|
/* D-70597 Stuttgart */
|
|
|
|
/* EMail: uz@musoftware.de */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-08-01 15:17:43 +00:00
|
|
|
/* common */
|
|
|
|
#include "check.h"
|
2001-10-11 20:06:01 +00:00
|
|
|
|
2000-08-01 15:17:43 +00:00
|
|
|
/* ca65 */
|
2000-05-28 13:40:48 +00:00
|
|
|
#include "error.h"
|
|
|
|
#include "scanner.h"
|
|
|
|
#include "macpack.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Data */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Predefined packages */
|
2003-01-04 16:59:51 +00:00
|
|
|
static char MacGeneric [] = /* Generic macros */
|
2000-07-19 09:24:12 +00:00
|
|
|
".macro add Arg1, Arg2\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" clc\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
" .if .paramcount = 2\n"
|
|
|
|
" adc Arg1, Arg2\n"
|
|
|
|
" .else\n"
|
|
|
|
" adc Arg1\n"
|
|
|
|
" .endif\n"
|
|
|
|
".endmacro\n"
|
|
|
|
".macro sub Arg1, Arg2\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" sec\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
" .if .paramcount = 2\n"
|
|
|
|
" sbc Arg1, Arg2\n"
|
|
|
|
" .else\n"
|
|
|
|
" sbc Arg1\n"
|
|
|
|
" .endif\n"
|
|
|
|
".endmacro\n";
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2003-01-04 16:59:51 +00:00
|
|
|
static char MacLongBranch [] = /* Long branch macros */
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jeq Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bne *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" beq Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bne *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jne Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" beq *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bne Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" beq *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jmi Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bpl *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bmi Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bpl *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jpl Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bmi *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bpl Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bmi *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jcs Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bcc *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bcs Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bcc *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jcc Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bcs *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bcc Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bcs *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jvs Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bvc *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bvs Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bvc *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
".macro jvc Target\n"
|
2001-10-11 20:06:01 +00:00
|
|
|
" .if .match(Target, 0)\n"
|
|
|
|
" bvs *+5\n"
|
|
|
|
" jmp Target\n"
|
2002-11-22 01:45:00 +00:00
|
|
|
" .elseif .def(Target,local) .and ((*+2)-(Target) <= 127)\n"
|
2000-05-28 13:40:48 +00:00
|
|
|
" bvc Target\n"
|
|
|
|
" .else\n"
|
|
|
|
" bvs *+5\n"
|
|
|
|
" jmp Target\n"
|
|
|
|
" .endif\n"
|
2000-07-19 09:24:12 +00:00
|
|
|
".endmacro\n";
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Table with pointers to the different packages */
|
2003-01-04 16:59:51 +00:00
|
|
|
static char* MacPackages [] = {
|
2000-05-28 13:40:48 +00:00
|
|
|
MacGeneric,
|
|
|
|
MacLongBranch,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Code */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsertMacPack (unsigned Id)
|
|
|
|
/* Insert the macro package with the given id in the input stream */
|
|
|
|
{
|
|
|
|
/* Check the parameter */
|
|
|
|
CHECK (Id < sizeof (MacPackages) / sizeof (MacPackages [0]));
|
|
|
|
|
|
|
|
/* Insert the package */
|
|
|
|
NewInputData (MacPackages [Id], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|