X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=amode.h;h=380b46017d1822167f67670ad810f61acafc8edc;hp=5632fe9a26139380c4c8c5d095a7194932d9297a;hb=51cff2ac6cb3d097f62b68c51d74fafbce8923f6;hpb=b10167d55798ea184f97fafda075255c0852f3b6 diff --git a/amode.h b/amode.h index 5632fe9..380b460 100644 --- a/amode.h +++ b/amode.h @@ -1,9 +1,9 @@ // // 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 +// Source utilised with the kind permission of Landon Dyer // #ifndef __AMODE_H__ @@ -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 *);