17 lines
		
	
	
		
			477 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			477 B
		
	
	
	
		
			Factor
		
	
	
USING: alien alien.c-types cpu.architecture cpu.x86.64
 | 
						|
cpu.x86.assembler cpu.x86.assembler.operands tools.test
 | 
						|
assocs sequences ;
 | 
						|
IN: cpu.x86.64.tests
 | 
						|
 | 
						|
: assembly-test-1 ( -- x ) int { } cdecl [ RAX 3 MOV ] alien-assembly ;
 | 
						|
 | 
						|
[ 3 ] [ assembly-test-1 ] unit-test
 | 
						|
 | 
						|
: assembly-test-2 ( a b -- x )
 | 
						|
    int { int int } cdecl [
 | 
						|
        param-reg-0 param-reg-1 ADD
 | 
						|
        int-regs return-regs at first param-reg-0 MOV
 | 
						|
    ] alien-assembly ;
 | 
						|
 | 
						|
[ 23 ] [ 17 6 assembly-test-2 ] unit-test
 |