]> git.sur5r.net Git - cc65/blobdiff - src/common/addrsize.c
Only for jumps, the lib uses named asm labels in branches
[cc65] / src / common / addrsize.c
index ad54618e6408a35ee70c2e145854125c5cfaa1d6..d4eff22bbccc5bd20fd75f592a59b6bdd35905b2 100644 (file)
@@ -62,8 +62,8 @@ const char* AddrSizeToStr (unsigned char AddrSize)
 
 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.
- */
+** the string cannot be mapped to an address size.
+*/
 {
     static const struct {
         const char*     Name;
@@ -92,6 +92,3 @@ unsigned char AddrSizeFromStr (const char* Str)
     /* Not found */
     return ADDR_SIZE_INVALID;
 }
-
-
-