FPGA片上资源-FDR/FDRE/FDRS/FDRSE
2010-11-23 17:47
FDR : D Flip-Flop with Synchronous Ret
/itp/xilinx5/data/docs/lib/lib0170_154.html
Spartan-II, Spartan-IIE | Spartan-3 | Virtex, Virtex-E | Virtex-II, Virtex-II Pro, Virtex-II Pro X | XC9500/XV/XL | CoolRunner XPLA3 | CoolRunner-II |
Primitive | Primitive | Primitive | Primitive中国最长的电视剧 | 母子情爱Macro 虚物 | Macro | FDR is a single D-type flip-flop with data (D) and synchronous ret (R) inputs and data output (Q). The synchronous ret (R) input, when High, overrides all other inputs and rets the Q output Low on the Low-to-High clock (C) transition. The data on the D input is loaded into the flip-flop when R is Low during the Low-to-High clock transition. The flip-flop is asynchronously cleared, output Low, when power is applied. Macro |
| | | | | | |
FDR is a single D-type flip-flop with data (D) and synchronous ret (R) inputs and data output (Q). The synchronous ret (R) input, when High, overrides all other inputs and rets the Q output Low on the Low-to-High clock (C) transition. The data on the D input is loaded into the flip-flop when R is Low during the Low-to-High clock transition.
The flip-flop is asynchronously cleared, output Low, when power is applied.
VHDL Inference Code
architecture Behavioral of fdr is
begin
process (C) begin
if (C' event and C = '1') then
if (R = '1') then
Q <= '0';
el
Q <= D;
end if;
end if;
end process;
end Behavioral;
Verilog Inference Code
always @ (podge C) begin
if (R)
Q <= 0;
el
Q <= D;
end
FDRE : D Flip-Flop with Clock Enable and Synchronous Ret
/itp/xilinx5/data/docs/lib/lib0172_156.html
FDRE is a single D-type flip-flop with data (D), clock enable (CE), and synchronous ret (R) inputs and data output (Q). The synchronous ret (R) input, when High, overrides all other inputs and rets the Q output Low on the Low-to-High clock (C) transition. The data on the D input is loaded into the flip-flop when R is Low and CE is High during the Low-to-High clock transition.
The flip-flop is asynchronously cleared, output Low, when power is applied.
VHDL Inference Code
architecture Behavioral of fdre is
begin
cream化妆品中的意思
process (C) begin
if (C’ event and C = ’1’) then
八字命理if (R = ’1’) then
Q <= ’0’;
elsif (CE = ’1’) then
Q <= D;
end if;
掷铁饼者雕像
end if;
end process;
end Behavioral;
Verilog Inference Code
always @ (podge C) begin
if (R)
Q <= 0;
el if (CE)
Q <= D;
end
FDRS : D Flip-Flop with Synchronous Ret and Set
/itp/xilinx5/data/docs/lib/lib0174_158.html
FDRS is a single D-type flip-flop with data (D), synchronous t (S), and synchronous ret (R) inputs and data output (Q). The synchronous ret (R) input, when High, overrides all other inputs and rets the Q output Low during the Low-to-High clock (C) tr
ansition. (Ret has precedence over Set.) When S is High and R is Low, the flip-flop is t, output High, during the Low-to-High clock transition. When R and S are Low, data on the (D) input is loaded into the flip-flop during the Low-to-High clock transition.
The flip-flop is asynchronously cleared, output Low, when power is applied.
VHDL Inference Code
architecture Behavioral of fdrs is
begin
process (C) begin
if (C' event and C = '1') then
if (R = '1') then
Q <= '0';
elsif (S = '1') then
Q <= '1';
el
Q <= D;
end if;
end if;
end process;
鼠标宏怎么用end Behavioral;
Verilog Inference Code
always @ (podge C) begin
if (R)
Q <= 0;
el if (S)
Q <= 1;自然流产症状
el
Q <= D;
end
FDRSE : D Flip-Flop with Synchronous Ret and Set and Clock Enable
/itp/xilinx5/data/docs/lib/lib0176_160.html
FDRSE is a single D-type flip-flop with synchronous ret (R), synchronous t (S), and clock enable (CE) inputs and data output (Q). The ret (R) input, when High, overrides all other inputs and rets the Q output Low during the Low-to-High clock transition. (Ret has precedence over Set.) When the t (S) input is High and R is Low, the flip-flop is t, output High, during the Low-to-High clock (C) transition. Data on the D input is loaded into the flip-flop when R and S are Low and CE is High during the Low-to-High clock transition.