16 lines
174 B
C
16 lines
174 B
C
#define CODE_EXPANDER
|
|
#include <em.h>
|
|
#include "mach.h"
|
|
#include "back.h"
|
|
|
|
void
|
|
C_rom_scon( s, n)
|
|
char *s;
|
|
arith n;
|
|
{
|
|
switchseg( SEGROM);
|
|
dump_label();
|
|
|
|
rom_str( s,n);
|
|
}
|