repo.or.cz
/
tomato
/
davidwu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git]
/
release
/
src
/
router
/
openssl
/
crypto
/
bn
/
asm
/
x86
/
div.pl
blob
0e90152caa95591373501ddbc3a97421a8931c5d
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
;