pullup.vhd
来自「others example of code VHDL for I2c」· VHDL 代码 · 共 17 行
VHD
17 行
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 + =
减小字号Ctrl + -
显示快捷键?