Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add missing copyright header | Felix Fietkau | 2007-02-26 | 1 | -0/+5 |
* | finally move buildroot-ng to trunk | Felix Fietkau | 2016-03-20 | 1 | -0/+2 |
![]() |
index : openwrt/upstream | |
upstream openwrt | James |
aboutsummaryrefslogtreecommitdiffstats |
Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add missing copyright header | Felix Fietkau | 2007-02-26 | 1 | -0/+5 |
* | finally move buildroot-ng to trunk | Felix Fietkau | 2016-03-20 | 1 | -0/+2 |
library ieee;
context ieee.ieee_std_context;
entity ent is
end ent;
architecture arch of ent is
begin
process
variable color: bit_vector(2 downto 0);
variable lcol: std_logic_vector(31 downto 0);
begin
lcol := (
23 downto 16 => color(2),
15 downto 8 => color(1),
7 downto 0 => color(0),
others=> '0'
);
wait;
end process;
end architecture;