NetBSD/sys/arch/amiga/stand/boot/txlt.l

20 lines
405 B
Plaintext

void munchit(char *);
%%
\..*\n printf("%s", yytext);
pea[ ][_A-Za-z][A-Za-z0-9_]*$ {printf("pea");munchit(yytext+3);}
\ [_A-Za-z][A-Za-z0-9_]*/\, munchit(yytext);
. putchar(*yytext);
%%
void
munchit(s)
char *s;
{
putchar(*s++);
if (!strncmp(s, "fp", 2) ||
!strncmp(s, "sp", 2) ||
((*s == 'a') || (*s == 'd')) && ((s[1]-'0')<=7))
printf("%s", s);
else
printf("pc@(%s)",s);
}