ack/lang/cem/cemcom/asm.c

13 lines
164 B
C
Raw Normal View History

1986-03-10 13:07:55 +00:00
/* $Header$ */
/* A S M */
code_asm(s, l)
1986-03-10 13:07:55 +00:00
char *s;
int l;
1986-03-10 13:07:55 +00:00
{
/* 'asm' '(' string ')' ';'
*/
s = s; l = l;
error("\"asm instruction not implemented", s);
1986-03-10 13:07:55 +00:00
}