Added an AddrSizeFromStr function.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4050 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-08-27 14:11:07 +00:00
parent 23dae5a04b
commit 6f39a15eff
2 changed files with 53 additions and 11 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* R<EFBFBD>merstra<EFBFBD>e 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* (C) 2003-2009, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -39,11 +39,12 @@
/*****************************************************************************/
/* Data */
/* Data */
/*****************************************************************************/
#define ADDR_SIZE_INVALID 0xFF
#define ADDR_SIZE_DEFAULT 0x00
#define ADDR_SIZE_ZP 0x01
#define ADDR_SIZE_ABS 0x02
@@ -53,7 +54,7 @@
/*****************************************************************************/
/* Code */
/* Code */
/*****************************************************************************/
@@ -61,6 +62,11 @@
const char* AddrSizeToStr (unsigned char AddrSize);
/* Return the name for an address size specifier */
unsigned char AddrSizeFromStr (const char* Str);
/* Return the address size for a given string. Returns ADDR_SIZE_INVALID if
* the string cannot be mapped to an address size.
*/
/* End of addrsize.h */