Working on better 65816 support

git-svn-id: svn://svn.cc65.org/cc65/trunk@2619 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-11-07 19:28:37 +00:00
parent 066ad63e35
commit 7e74078801
23 changed files with 558 additions and 460 deletions

View File

@@ -45,12 +45,23 @@
#define ADDR_SIZE_DEFAULT 0x00
#define ADDR_SIZE_ZEROPAGE 0x01
#define ADDR_SIZE_ABSOLUTE 0x02
#define ADDR_SIZE_ZP 0x01
#define ADDR_SIZE_ABS 0x02
#define ADDR_SIZE_FAR 0x03
/*****************************************************************************/
/* Code */
/*****************************************************************************/
const char* AddrSizeToStr (unsigned char AddrSize);
/* Return the name for an address size specifier */
/* End of addrsize.h */
#endif