1986-03-10 13:07:55 +00:00
|
|
|
/* $Header$ */
|
|
|
|
/* A S M */
|
|
|
|
|
1986-12-13 20:57:40 +00:00
|
|
|
code_asm(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 ')' ';'
|
|
|
|
*/
|
1986-12-13 20:57:40 +00:00
|
|
|
s = s; l = l;
|
|
|
|
error("\"asm instruction not implemented", s);
|
1986-03-10 13:07:55 +00:00
|
|
|
}
|