15 lines
184 B
C
15 lines
184 B
C
#include "em_code.h"
|
|
#include "em_private.h"
|
|
|
|
/* $Id$ */
|
|
|
|
void CC_crscon(int op, char *v, arith s)
|
|
{
|
|
/* CON or ROM with argument SCON(v,z)
|
|
*/
|
|
PS(op);
|
|
SCON(v, s);
|
|
CEND();
|
|
NL();
|
|
}
|