代码搜索结果
找到约 92,609 项符合
div 的代码
div.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity div is
port(--reset:in std_logic;
signal clk_input:in std_logic;
signal clk_2:out std_logic;
lib.dls
DLSL
1
DIV.VHDLVIEW U0380056.DLS
DIV-BEHAV.SYNTHESISVIEW U2863395.DLS
DIV-BEHAV.VHDLVIEW U5275518.DLS
P2S.VHDLVIEW U0606086.DLS
P2S-BEHAV.SYNTHESISVIEW U3254565.DLS
P2S-BEHAV.VHDLVIEW U6246831.
runxst_tcl.rsp
set allSynthModules {DIV_CAS.MOD DIV_row.MOD DIV.MOD}
ttttt_flowplus.gfl
# XST flow : Creating project file
CPU.prj
# xst flow : RunXST
CPU.prj
__projnav/CPU.xst
./xst
# XST flow : Creating project file
DIV.prj
# xst flow : RunXST
DIV.prj
__projnav/DIV.xst
./xst
大数求模 .txt
//大数求模
//调用形式:N.Mod(A),返回值:N%A
//求模与求商原理相同
CBigInt CBigInt::Mod(CBigInt& A)
{
CBigInt X,Y;
int len;
unsigned __int64 num,div;
unsigned long carry=0;
X.Mov(*this);
while(X.Cmp(A)>0)
大数相除 .txt
//大数相除
//调用形式:N.Div(A),返回值:N/A
//除法的关键在于“试商”,然后就变成了乘法和减法
//这里将被除数与除数的试商转化成了被除数最高位与除数最高位的试商
CBigInt CBigInt::Div(CBigInt& A)
{
CBigInt X,Y,Z;
int len;
unsigned __int64 num,div;
unsign
sdmenu.css
div.sdmenu {
width: 150px;
font-family: Arial, sans-serif;
font-size: 12px;
padding-bottom: 10px;
background: url(bottom.gif) no-repeat right bottom;
color: #fff;
}
div.sdmenu div {
b