mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Add test for DEF(@)
This commit is contained in:
@@ -314,7 +314,13 @@ uint32_t sym_GetConstantValue(char *s)
|
|||||||
{
|
{
|
||||||
struct sSymbol *psym = sym_FindSymbol(s);
|
struct sSymbol *psym = sym_FindSymbol(s);
|
||||||
|
|
||||||
if (psym != NULL) {
|
if (psym == pPCSymbol) {
|
||||||
|
if (pCurrentSection->nOrg == -1)
|
||||||
|
yyerror("Expected constant PC but section is not fixed");
|
||||||
|
else
|
||||||
|
return pPCSymbol->nValue;
|
||||||
|
|
||||||
|
} else if (psym != NULL) {
|
||||||
if (psym->nType & SYMF_CONST)
|
if (psym->nType & SYMF_CONST)
|
||||||
return getvaluefield(psym);
|
return getvaluefield(psym);
|
||||||
|
|
||||||
|
|||||||
5
test/asm/pc-def.asm
Normal file
5
test/asm/pc-def.asm
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
IF DEF(@)
|
||||||
|
PRINTT "defined\n"
|
||||||
|
ELSE
|
||||||
|
PRINTT "not defined\n"
|
||||||
|
ENDC
|
||||||
2
test/asm/pc-def.err
Normal file
2
test/asm/pc-def.err
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
ERROR: pc-def.asm(1):
|
||||||
|
'@' is not allowed as argument to the DEF function
|
||||||
0
test/asm/pc-def.out
Normal file
0
test/asm/pc-def.out
Normal file
Reference in New Issue
Block a user