cleaned up
Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@914 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
@@ -66,6 +66,7 @@ ARCHITECTURE behavior OF tb_vga_frontend64 IS
|
||||
signal rdy : std_logic := '0';
|
||||
|
||||
signal read_reg : unsigned(31 downto 0) := (others => '-');
|
||||
signal const_color : unsigned(31 downto 0) := X"1111_1111";
|
||||
|
||||
-- VGA signals
|
||||
signal vga_clk : std_logic := '1';
|
||||
@@ -415,7 +416,7 @@ STIMULUS: process
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '1';
|
||||
WE_O <= '1';
|
||||
SDAT_O <= X"0123_4567";
|
||||
SDAT_O <= const_color;
|
||||
ADDR_O <= X"0000_0054";
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '0';
|
||||
@@ -519,7 +520,7 @@ STIMULUS: process
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '1';
|
||||
WE_O <= '1';
|
||||
SDAT_O <= X"0123_4567";
|
||||
SDAT_O <= const_color;
|
||||
ADDR_O <= X"0000_0054";
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '0';
|
||||
@@ -622,7 +623,7 @@ STIMULUS: process
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '1';
|
||||
WE_O <= '1';
|
||||
SDAT_O <= X"0123_4567";
|
||||
SDAT_O <= const_color;
|
||||
ADDR_O <= X"0000_0054";
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '0';
|
||||
@@ -725,7 +726,7 @@ STIMULUS: process
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '1';
|
||||
WE_O <= '1';
|
||||
SDAT_O <= X"0123_4567";
|
||||
SDAT_O <= const_color;
|
||||
ADDR_O <= X"0000_0054";
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '0';
|
||||
@@ -828,7 +829,7 @@ STIMULUS: process
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '1';
|
||||
WE_O <= '1';
|
||||
SDAT_O <= X"0123_4567";
|
||||
SDAT_O <= const_color;
|
||||
ADDR_O <= X"0000_0054";
|
||||
wait until rising_edge(CLK_O) and SRDY_I = '1';
|
||||
STB_O <= '0';
|
||||
@@ -872,6 +873,7 @@ STIMULUS: process
|
||||
WE_O <= '0';
|
||||
|
||||
wait for 60000*CLK_PERIOD;
|
||||
const_color <= const_color + X"1111_1111";
|
||||
|
||||
end loop;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user