Download Link:
http://3dlscanner.googlecode.com/files/3dlscanner2.rar
Project Homepage:
http://code.google.com/p/3dlscanner/
Monday, March 8, 2010 at 6:47 AM Posted by Bejoy Thomas
Download Link:
http://3dlscanner.googlecode.com/files/3dlscanner2.rar
Project Homepage:
http://code.google.com/p/3dlscanner/
Labels: 3D Scanner 0 comments
Tuesday, December 29, 2009 at 9:29 PM Posted by Bejoy Thomas

library ieee;
use ieee.std_logic_1164.all;
entity master_slave_jk is
port(j,k,clk:in std_logic;q1,q1x,z1x:inout std_logic;
q2,q2x,z2x: inout std_logic);
end master_slave_jk;
architecture arc of master_slave_jk is
begin
process(clk)
begin
if clk='1' then
z1x<=(j and (not q2)) or ((not k)and q2);
q1<=z1x after 5 ns;
q1x<=not z1x after 5ns;
else
z2x<=(q1 and (not q2)) or ((not q1x)and q2);
q2<=z2x after 5 ns;
q2x<=not z2x after 5ns;
end if;
end process;
end arc; 
Labels: Flip Flops, VHDL Tutorial 0 comments
Wednesday, December 23, 2009 at 10:09 PM Posted by Bejoy Thomas
library ieee;
use ieee.std_logic_1164.all;
entity bejoy_op is
port(x,y,z:in std_logic;
p:out std_logic);
end bejoy_op;
architecture a of bejoy_op is
begin
p<=((x xor y) xor z);
end a;
Labels: Parity Generator, VHDL Tutorial 0 comments
at 10:08 PM Posted by Bejoy Thomas
library ieee;
use ieee.std_logic_1164.all;
entity bejoy_ep is
port(x,y,z:in std_logic;
p:out std_logic);
end bejoy_ep;
architecture a of bejoy_ep is
begin
p<=((x xor y) xnor z);
end a;
Labels: Parity Generator, VHDL Tutorial 0 comments
at 10:07 PM Posted by Bejoy Thomas
library ieee;
use ieee.std_logic_1164.all;
entity bejoy_jkff is
port(j,k,clk:in std_logic;q,q1,z:inout std_logic);
end bejoy_jkff;
architecture arc of bejoy_jkff is
begin
process(clk)
begin
if clk='1' then
z<=(j and (not q)) or ((not k) and q);
q<=z after 5ns;
q1<=not z after 5ns;
end if;
end process;
end arc;
Labels: Flip Flops, VHDL Tutorial 0 comments
at 10:06 PM Posted by Bejoy Thomas
library ieee;
use ieee.std_logic_1164.all;
entity bejoy_tff is
port(t,clk:in std_logic;q,q1,z:inout std_logic);
end bejoy_tff;
architecture arc of bejoy_tff is
begin
process(clk)
begin
if clk='1' then
z<=((t and (not q)) or ((not t) and q));
q<=z after 5ns;
q1<=not z after 5ns;
end if;
end process;
end arc;
Labels: Flip Flops, VHDL Tutorial 0 comments
at 10:06 PM Posted by Bejoy Thomas
library ieee;
use ieee.std_logic_1164.all;
entity bejoy_rsff is
port(s,r,clk:in std_logic;q,q1,z:inout std_logic);
end bejoy_rsff;
architecture arc of bejoy_rsff is
begin
process(clk)
begin
if clk='1' then
z<=s or ((not r) and q);
q<=z after 5ns;
q1<=not z after 5ns;
end if;
end process;
end arc;
Labels: Flip Flops, VHDL Tutorial 0 comments