Support for the .BANKBYTES, .LOBYTES and .HIBYTES pseudo functions contributed
by Kevin Schuetz <scrapdog@runbox.com>. git-svn-id: svn://svn.cc65.org/cc65/trunk@3965 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -319,7 +319,7 @@ static ExprNode* Symbol (SymEntry* S)
|
||||
|
||||
|
||||
|
||||
static ExprNode* FuncBankByte (void)
|
||||
ExprNode* FuncBankByte (void)
|
||||
/* Handle the .BANKBYTE builtin function */
|
||||
{
|
||||
return BankByte (Expression ());
|
||||
@@ -393,7 +393,7 @@ static ExprNode* FuncDefined (void)
|
||||
|
||||
|
||||
|
||||
static ExprNode* FuncHiByte (void)
|
||||
ExprNode* FuncHiByte (void)
|
||||
/* Handle the .HIBYTE builtin function */
|
||||
{
|
||||
return HiByte (Expression ());
|
||||
@@ -409,7 +409,7 @@ static ExprNode* FuncHiWord (void)
|
||||
|
||||
|
||||
|
||||
static ExprNode* FuncLoByte (void)
|
||||
ExprNode* FuncLoByte (void)
|
||||
/* Handle the .LOBYTE builtin function */
|
||||
{
|
||||
return LoByte (Expression ());
|
||||
|
||||
Reference in New Issue
Block a user