📄 pullup.vhd
字号:
--**********************************************************************************
-- Ryan Henderson
-- Oregon Institute of Technology
-- CMOS digital camera controller and frame capture device
-- May, 21 2002
--
-- pullup.vhd
--
-- Used in testbench to pull up I2C lines
--**********************************************************************************
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
entity PULLUP is
port(v101: OUT std_logic);
end PULLUP;
architecture archPULLUP of PULLUP is
begin
v101 <= 'H';
end archPULLUP;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -