16 lines
175 B
C
16 lines
175 B
C
#define CODE_EXPANDER
|
|
#include <em.h>
|
|
#include "mach.h"
|
|
#include "back.h"
|
|
|
|
void
|
|
C_con_scon( s, n)
|
|
char *s;
|
|
arith n;
|
|
{
|
|
switchseg( SEGCON);
|
|
dump_label();
|
|
|
|
con_str( s, n);
|
|
}
|