Mike Tsao geeks out.

Text

AND gate written

I got something to build in the Xilinx ISE:

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;

entity foo is
    Port ( port0 : in  STD_LOGIC;
           port1 : in  STD_LOGIC;
           port_out : out  STD_LOGIC);
end foo;

architecture Behavioral of foo is
begin
 port_out <= port0 and port1;
end Behavioral;

All it does is (in theory) set a high voltage on one pin when a high voltage is set on two other pins. But it’s a start.

View comments
Posted on Saturday, January 21 2012.

An In-System Programmer for Atmel AVR microcontrollersRPio: A Raspberry Pi Breakout BoardThe Hypna Go Go: a MILD (mnemonic induction of lucid dreaming) deviceOK Wake: An alarm clock for youngsters who can't yet read. Ask me anything
Previous Next