Added macros for jumps after unsigned compares to the "generic" macro package.
Removed BGE/BLT as native instructions for the 65816. git-svn-id: svn://svn.cc65.org/cc65/trunk@4427 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -59,7 +59,7 @@
|
||||
#include "studyexpr.h"
|
||||
#include "symtab.h"
|
||||
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Forwards */
|
||||
@@ -489,9 +489,7 @@ static const struct {
|
||||
{ "BCC", 0x0020000, 0x90, 0, PutPCRel8 },
|
||||
{ "BCS", 0x0020000, 0xb0, 0, PutPCRel8 },
|
||||
{ "BEQ", 0x0020000, 0xf0, 0, PutPCRel8 },
|
||||
{ "BGE", 0x0020000, 0xb0, 0, PutPCRel8 }, /* == BCS */
|
||||
{ "BIT", 0x0a0006c, 0x00, 2, PutAll },
|
||||
{ "BLT", 0x0020000, 0x90, 0, PutPCRel8 }, /* == BCC */
|
||||
{ "BMI", 0x0020000, 0x30, 0, PutPCRel8 },
|
||||
{ "BNE", 0x0020000, 0xd0, 0, PutPCRel8 },
|
||||
{ "BPL", 0x0020000, 0x10, 0, PutPCRel8 },
|
||||
|
||||
Reference in New Issue
Block a user