some small changes, asm() yields error message

This commit is contained in:
dick
1986-12-13 20:57:40 +00:00
parent 013f816c6c
commit 62e81f1292
5 changed files with 44 additions and 40 deletions

View File

@@ -1,11 +1,12 @@
/* $Header$ */
/* A S M */
asm_seen(s, l)
code_asm(s, l)
char *s;
int l;
{
/* 'asm' '(' string ')' ';'
*/
warning("\"asm(\"%s\")\" instruction skipped", s);
s = s; l = l;
error("\"asm instruction not implemented", s);
}