1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Fixed an error introduced in revision 4427: The list of 65816 instructions

contained two items less than the counter said (because in 4427 two were
deleted without adjusting the counter). Depending on the compilers
implementation of bsearch(), some of the 65826 instructions were not found
when searching the table.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5310 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-12-11 23:40:53 +00:00
parent 0d04730ddf
commit e8174de0f1

View File

@ -479,7 +479,7 @@ static const struct {
/* Instruction table for the 65816 */
static const struct {
unsigned Count;
InsDesc Ins[101];
InsDesc Ins[99];
} InsTab65816 = {
sizeof (InsTab65816.Ins) / sizeof (InsTab65816.Ins[0]),
{