Posted
Filed under 잡담

NateOn 메신저를.. 이용한지가 고2때부터 MSN하고 같이 사용했으니..
상당한 시간을 사용한 듯...//

음.. 그때 당시 네이트온은 MSN과 거의 흡사하다고 안 쓴다고 하였으나,
SK에서 싸이월드 먹음과 동시에 메신저에 미니홈피 연동이라는 거와 무료 문자 제공.. 후, 언젠가 네이트온만 사용하게 되는..//
2006/10/14 16:37 2006/10/14 16:37
Posted
Filed under 공부한 것들/기타

[CODE type=vhdl]
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;---- Uncomment the following library declaration if instantiating
---- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all; entity exadd is
  Port ( put1 : in std_logic_vector(3 downto 0);
          put2 : in std_logic_vector(3 downto 0);
          addsu : out std_logic_vector(3 downto 0));
end exadd;architecture ex of exadd is begin
process (put1, put2)
  begin
 
  if put1 > put2 then
     addsu <= put1 + put2;
      else
     addsu <= put2 - put1;
 
  end if;
  end process;
end ex;
[/CODE]

입력받는 두 수를 비교해서..
입력 받은 두 수와 덧셈, 뺄셈 하는 것..

시뮬레이터 결과:


※ VHDL 조낸 싫다..
2006/10/13 13:36 2006/10/13 13:36