is_rom is boolean, not integer

This commit is contained in:
ceriel 1990-02-12 15:15:21 +00:00
parent abeebac3c1
commit 7c4af80c0f

View file

@ -1016,7 +1016,7 @@ expr
| ROM '(' emarg ',' NUMBER ')'
{ $$ = make_expr(TYPINT,EX_ROM,$3-1,chkincl($5,1,3)-1); }
| ISROM '(' emarg ')'
{ $$ = make_expr(TYPINT,EX_ISROM,$3-1,0); }
{ $$ = make_expr(TYPBOOL,EX_ISROM,$3-1,0); }
| LOWW '(' emarg ')'
{ $$ = make_expr(TYPINT,EX_LOWW,$3-1,0); }
| HIGHW '(' emarg ')'