19 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #define CODE_EXPANDER
 | |
| #include <back.h>
 | |
| #include <system.h>
 | |
| #include "mach.h"
 | |
| 
 | |
| C_init( wsize, psize)
 | |
| arith wsize, psize;
 | |
| {
 | |
| 	if ( wsize != EM_WSIZE) {
 | |
| 		fprint( STDERR, "wrong word size\n");
 | |
| 		exit( -1);
 | |
| 	}
 | |
| 	if ( psize != EM_PSIZE) {
 | |
| 		fprint( STDERR, "wrong pointer size\n");
 | |
| 		exit( -1);
 | |
| 	}
 | |
| 
 | |
| 	init_back();
 | |
| }
 |