~ubuntu-branches/ubuntu/precise/openssl098/precise

« back to all changes in this revision

Viewing changes to crypto/bn/asm/x86/div.pl

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2011-03-23 19:50:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110323195031-6h9crj4bymhhr8b8
Tags: upstream-0.9.8o
ImportĀ upstreamĀ versionĀ 0.9.8o

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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;