]> git.sur5r.net Git - cc65/commitdiff
WDM support (#721)
authorStefan <stefan.haubenthal@gmail.com>
Sun, 19 Aug 2018 14:29:25 +0000 (16:29 +0200)
committergreg-king5 <greg.king5@verizon.net>
Sun, 19 Aug 2018 14:29:25 +0000 (10:29 -0400)
WDM support

src/ca65/instr.c

index 912e458670994a2d108c5e9c6fc5935a39369ba6..532a8748e6e24a72d582b5ac7cd6f03144a152b2 100644 (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 }
     }