git: 9front

ref: fd5caf7dac033d118d9b0866f53d66a3cde856b5
dir: /sys/src/ape/lib/openssl/crypto/bn/asm/x86/div.pl/

View raw version
#!/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;