components.vhd
来自「USBHostSlave is a USB 1.1 host and Devic」· VHDL 代码 · 共 48 行
VHD
48 行
use work.usbpkg.all;PACKAGE usb_components IScomponent hub is generic ( HUBDELAY : time := 100 ns ); port ( signal downstrm_a,downstrm_b : inout pkt; signal upstrm : inout pkt );end component;component endpoint is generic ( MANUF: string := "FooBar Enterprises"; ADDR : natural := 0 ); port ( signal dport : inout pkt );end component;component root is generic ( ADDR : natural := 0 ); port ( signal dport : inout pkt );end component;END usb_components;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?