求4位多功能移位寄存器VHDL程序

功能为SaSb=00时,右移;SaSb=01时左移;SaSb=10时,同步清零;SaSb=11时,同步置数。急求!!!... 功能为SaSb=00时,右移;SaSb=01时左移;SaSb=10时,同步清零;SaSb=11时,同步置数。急求!!! 展开
 我来答
jack218338
2013-12-24 · TA获得超过213个赞
知道小有建树答主
回答量:86
采纳率:100%
帮助的人:44.2万
展开全部
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;

entity yw is
port(
data:in std_logic_vector(3 downto 0);--待置数
clk:in std_logic;
Sa :in std_logic;
Sb :in std_logic;
shift_Bit: in std_logic; --要移入的数据
qout :buffer std_logic_vector(3 downto 0));
end yw;

architecture behave of yw is
signed mode : std_logic_vector(1 downto 0);
begin

mode <= Sa & Sb;

process(clk)
begin
if(clk'event and clk='1')then
case mode is
when"10"=>qout<="0000"; --清零
when"11"=>qout<=data; --置数
when"00"=>qout<=shift_Bit & qout(3 downto 1); --右移
when"01"=>qout<=qout(2 downto 0) &shift_Bit ;--左移
when others=>null;
end case;
else
qout<=qout
end if;
end process;

end behave;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式