代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/466829/7021106
vhd ram_shift.vhd
-- PARALLE IN PARALLEL OUT SHIFTER IN THE ADDRESS GENERATION UNIT.
-- REQUIRED BECAUSE FFT IS COMPUTED ON DATA AND WRITTEN BACK INTO THE SAME
-- LOCATION AFTER 5 CYCLES. SO THE READ ADDRESS IS SHIFT
www.eeworm.com/read/466829/7021117
vhd shift2.vhd
-- SHIFT UNIT
library ieee ;
use ieee.std_logic_1164.all ;
use work.butter_lib.all ;
use ieee.std_logic_arith.all ;
use ieee.std_logic_unsigned.all ;
entity shift2 is
port (
sub_contr
www.eeworm.com/read/465636/7050931
v spi_shift.v
`include "spi_defines.v"
`include "timescale.v"
module spi_shift (clk, rst, latch, byte_sel, len, lsb, go,
pos_edge, neg_edge, rx_negedge, tx_negedge,
tip, la
www.eeworm.com/read/465636/7050943
bmp spi_shift.bmp
www.eeworm.com/read/465319/7053077
v shift_maker.v
// Written by Amit Pandey
`define SHIFT_TYPE1 2'b00
`define SHIFT_TYPE2 2'b01
`define SHIFT_TYPE3 2'b10
`define SHIFT_TYPE4 2'b11
module shift_maker(ir2, Reg_value, SAM_Ctrl,BS_Shift_Amt,BS_Sh
www.eeworm.com/read/464869/7061544
v shift_register.v
module shift_register(clk,rst,din,regs,dout);
input clk,rst,din;
output[9:0] regs;
output dout;
reg dout;
reg[9:0] shift_regs;
assign regs=shift_regs;
always @(po
www.eeworm.com/read/328376/7149267
txt shift_register.txt
--
--
---------------------------------------------------------------------------------------
-- DESCRIPTION : Shift register
-- Type : univ
-- Width : 4
--
www.eeworm.com/read/462735/7197090
dsn bcd shift.dsn
www.eeworm.com/read/462735/7197091
asm bcd shift.asm
ORG 00H
MOV R7,#03H
MOV R0,#30H
MOV 30H,#47H
MOV 31H,#36H
MOV 32H,#21H
BRLN: MOV A,R7 ;取字节数至R2中
MOV R2,A
ADD A,R0 ;初始化数据指针
MOV R0,A
MOV R3,#0 ;工作单元
www.eeworm.com/read/461594/7223806
v spi_shift.v
//////////////////////////////////////////////////////////////////////
//// ////
//// spi_shift.v