mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
|   | #!/usr/local/bin/perl | ||
|  | # x86 assember | ||
|  | 
 | ||
|  | sub bn_div_words | ||
|  | 	{ | ||
|  | 	local($name)=@_; | ||
|  | 
 | ||
|  | 	&function_begin($name,""); | ||
|  | 	&mov("edx",&wparam(0));	# | ||
|  | 	&mov("eax",&wparam(1));	# | ||
|  | 	&mov("ebx",&wparam(2));	# | ||
|  | 	&div("ebx"); | ||
|  | 	&function_end($name); | ||
|  | 	} | ||
|  | 1; |