代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6251111
c shift.c
#ifndef lint
static char sccsid[] = "@(#)shift.c 4.3 8/11/83";
#endif
# include "e.h"
#include "e.def"
bshiftb(p1, dir, p2) int p1, dir, p2; {
int shval, d1, h1, b1, h2, b2;
#ifndef NEQN
int diffp
www.eeworm.com/read/363748/6288763
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/388498/6307327
obj shift.obj
www.eeworm.com/read/388498/6307333
lst shift.lst
C51 COMPILER V7.09 SHIFT 11/16/2008 20:51:27 PAGE 1
C51 COMPILER V7.09, COMPILATION OF MODULE SHIFT
OBJECT MODULE PLACED IN s
www.eeworm.com/read/388498/6307334
c shift.c
#include
#include
//#include
#define uchar unsigned char
#define uint unsigned int
code char led[]={0x11,0xD7,0x32,0x92,
0xD4,0x98,0x18,0xD3,0x10,0x90,
www.eeworm.com/read/488271/6491155
vhd shift.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_SIGNED.ALL;
use ieee.std_logic_arith.all;
ENTITY shift IS
PORT( clk : in std_logic;
input : in s
www.eeworm.com/read/485588/6553690
c shift.c
www.eeworm.com/read/483815/6595900
txt shift.txt
移位:
#include //需要加入头文件
格式: temp=_crol_(temp,1); /*在大循环中写入,_crol_是循环左移,_cror_是循环右移,
括号内第一个参数temp是要移动的变量。,后面是要移动几位*/
例:
temp=0xef;
www.eeworm.com/read/478539/6709391