1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 22:29:31 +00:00

Comment out the RegVal function using #if to get rid of the compiler warning

about an unused function.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4237 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-09-26 18:54:00 +00:00
parent 0a8eb2bde3
commit e80cb24164

View File

@ -183,7 +183,8 @@ static short ZPRegVal (unsigned short Use, const RegContents* RC)
}
#if 0 /* Currently unused */
static short RegVal (unsigned short Use, const RegContents* RC)
/* Return the contents of the given register */
{
@ -197,6 +198,7 @@ static short RegVal (unsigned short Use, const RegContents* RC)
return ZPRegVal (Use, RC);
}
}
#endif