links.vhd

来自「DLX CPU VHDL CODE UNIVERSITY」· VHDL 代码 · 共 28 行

VHD
28
字号
library IEEE;use STD.textio.all;use IEEE.std_logic_1164.all;use work.dp32_types.all;  entity L64to32 is    port(a :in bit_64;         r1 :out bit_32;	 y2 : out bit_32);end L64to32;architecture structure of L64to32 is	alias h: bit_32 is a(63 downto 32);	alias l: bit_32 is a(31 downto 0);begin	r1<=h;	y2<=l;end;	

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?