1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-13 19:29:34 +00:00

WDM support (#721)

WDM support
This commit is contained in:
Stefan 2018-08-19 16:29:25 +02:00 committed by greg-king5
parent 03a99569e3
commit b93b88211c

View File

@ -635,7 +635,7 @@ static const struct {
/* Instruction table for the 65816 */
static const struct {
unsigned Count;
InsDesc Ins[99];
InsDesc Ins[100];
} InsTab65816 = {
sizeof (InsTab65816.Ins) / sizeof (InsTab65816.Ins[0]),
{
@ -736,6 +736,7 @@ static const struct {
{ "TYA", 0x0000001, 0x98, 0, PutAll },
{ "TYX", 0x0000001, 0xbb, 0, PutAll },
{ "WAI", 0x0000001, 0xcb, 0, PutAll },
{ "WDM", 0x0000004, 0x42, 6, PutAll },
{ "XBA", 0x0000001, 0xeb, 0, PutAll },
{ "XCE", 0x0000001, 0xfb, 0, PutAll }
}