代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/137678/13306090
asm shift.asm
www.eeworm.com/read/323035/13357198
c shift.c
www.eeworm.com/read/322560/13376787
v shift.v
`timescale 1ns/10ps
module shift(
//input
clk,
rst,
s,
in,
//output
out);
input clk,rst;
input [3:0]s;
input [7:0]in;
output [7:0]out;
reg [7:0]vol;
ass
www.eeworm.com/read/319030/13464119
m shift.m
% Program 5-4
% shift.m
%
% Shift the contents of the register.
%
% Programmed by M.Okita and H.Harada
%
function [outregi] = shift(inregi,shiftr,shiftu)
% ********************************
www.eeworm.com/read/316707/13518428
c shift.c
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ shift.c - this file implements bitwise shifting instruc
www.eeworm.com/read/316401/13523636
v shift.v
module shift(clk1,x,x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15,clr);
input clk1;
input[7:0] x;
input clr;
output[7:0] x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
www.eeworm.com/read/312292/13614107
c shift.c
www.eeworm.com/read/310677/13647164
vhd shift.vhd
-- File: shift.vhd
--
-- Author: Jennifer Jenkins
-- Philips Semiconductor
-- Purpose: Serial in/serial out 8-bit parallel load/out shift
-- register component definition.