Changeset 523 for cpp/frams/vm
- Timestamp:
- 07/03/16 17:36:35 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/framscript.y
r489 r523 149 149 150 150 asmlines: /* empty */ 151 | ASMLINE { fputs(str($1),trctx.out);fputc('\n',trctx.out);}152 | asmlines ASMLINE { fputs(str($2),trctx.out);fputc('\n',trctx.out);}151 | ASMLINE {trctx.out->Vputs(str($1));trctx.out->Vputc('\n');} 152 | asmlines ASMLINE {trctx.out->Vputs(str($2));trctx.out->Vputc('\n');} 153 153 ; 154 154
Note: See TracChangeset
for help on using the changeset viewer.