is_rom is boolean, not integer

This commit is contained in:
ceriel 1990-02-12 15:15:21 +00:00
parent bd780df1db
commit c79763b1a9

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 ')'