X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=amode.h;h=380b46017d1822167f67670ad810f61acafc8edc;hp=eba0e5f7af1685a7a72b2f119cba66917a08c97a;hb=51cff2ac6cb3d097f62b68c51d74fafbce8923f6;hpb=d0c28c349ddfb8393568037f68bddbe8979ce0df diff --git a/amode.h b/amode.h index eba0e5f..380b460 100644 --- a/amode.h +++ b/amode.h @@ -1,7 +1,7 @@ // // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System // AMODE.H - Addressing Modes -// Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -39,7 +39,7 @@ #define M_DREG 0x00000001L // Dn #define M_AREG 0x00000002L // An #define M_AIND 0x00000004L // (An) -#define M_APOSTINC 0x00000008L // (An)+ +#define M_APOSTINC 0x00000008L // (An)+ #define M_APREDEC 0x00000010L // -(An) #define M_ADISP 0x00000020L // (d16,An) d16(An) #define M_AINDEXED 0x00000040L // (d8,An,Xn) d8(An,Xn) @@ -107,7 +107,7 @@ MNTAB { // mnattr: #define CGSPECIAL 0x8000 // Special (don't parse addr modes) -// Prototypes +// Exported functions int amode(int); int reglist(WORD *);