diff options
author | cvs2svn <admin@example.com> | 2000-10-25 15:23:17 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2000-10-25 15:23:17 +0000 |
commit | 690af28bdf827ab9c81648f507eb492c9076d5d3 (patch) | |
tree | 1ced1775de07c13c2a5a1d9e3bde843578ac541d /src/lib/libcrypto/bn/asm/x86/div.pl | |
parent | 463e714935b9651a5eb2c08fcf3f8844fc6b653d (diff) | |
download | openbsd-OPENBSD_2_8.tar.gz openbsd-OPENBSD_2_8.tar.bz2 openbsd-OPENBSD_2_8.zip |
This commit was manufactured by cvs2git to create branch 'OPENBSD_2_8'.OPENBSD_2_8
Diffstat (limited to 'src/lib/libcrypto/bn/asm/x86/div.pl')
-rw-r--r-- | src/lib/libcrypto/bn/asm/x86/div.pl | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/lib/libcrypto/bn/asm/x86/div.pl b/src/lib/libcrypto/bn/asm/x86/div.pl deleted file mode 100644 index 0e90152caa..0000000000 --- a/src/lib/libcrypto/bn/asm/x86/div.pl +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | #!/usr/local/bin/perl | ||
2 | # x86 assember | ||
3 | |||
4 | sub bn_div_words | ||
5 | { | ||
6 | local($name)=@_; | ||
7 | |||
8 | &function_begin($name,""); | ||
9 | &mov("edx",&wparam(0)); # | ||
10 | &mov("eax",&wparam(1)); # | ||
11 | &mov("ebx",&wparam(2)); # | ||
12 | &div("ebx"); | ||
13 | &function_end($name); | ||
14 | } | ||
15 | 1; | ||