1986-03-10 13:07:55 +00:00
|
|
|
/* $Header$ */
|
|
|
|
/* A S M */
|
|
|
|
|
1986-03-25 16:40:43 +00:00
|
|
|
asm_seen(s, l)
|
1986-03-10 13:07:55 +00:00
|
|
|
char *s;
|
1986-03-25 16:40:43 +00:00
|
|
|
int l;
|
1986-03-10 13:07:55 +00:00
|
|
|
{
|
|
|
|
/* 'asm' '(' string ')' ';'
|
|
|
|
*/
|
|
|
|
warning("\"asm(\"%s\")\" instruction skipped", s);
|
|
|
|
}
|