summaryrefslogtreecommitdiff
path: root/crypto/bn/asm/x86/div.pl
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/bn/asm/x86/div.pl')
-rw-r--r--crypto/bn/asm/x86/div.pl15
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/bn/asm/x86/div.pl b/crypto/bn/asm/x86/div.pl
new file mode 100644
index 0000000000..0e90152caa
--- /dev/null
+++ b/crypto/bn/asm/x86/div.pl
@@ -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;