]> WPIA git - cassiopeia.git/blobdiff - lib/openssl/crypto/bn/asm/x86/div.pl
add: execute openssl fetcher to fetch openssl 1.0.1j
[cassiopeia.git] / lib / openssl / crypto / bn / asm / x86 / div.pl
diff --git a/lib/openssl/crypto/bn/asm/x86/div.pl b/lib/openssl/crypto/bn/asm/x86/div.pl
new file mode 100644 (file)
index 0000000..0e90152
--- /dev/null
@@ -0,0 +1,15 @@
+#!/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;