11 lines
		
	
	
		
			301 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			301 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2007, 2008 Slava Pestov.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: parser layouts system kernel ;
 | 
						|
IN: bootstrap.ppc
 | 
						|
 | 
						|
: c-area-size ( -- n ) 14 bootstrap-cells ;
 | 
						|
: lr-save ( -- n ) 2 bootstrap-cells ;
 | 
						|
 | 
						|
<< "vocab:cpu/ppc/bootstrap.factor" parse-file parsed >>
 | 
						|
call
 |