diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-03-03 17:30:09 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-03-03 17:30:09 +0100 |
commit | df8902fba3a6e97ca3c5fdedb70999faac713815 (patch) | |
tree | 68cc7cd37724c971d78624be7317181afc0f8df5 /basys3/basys3.srcs/ppu_pceg_tb.vhd | |
parent | d832b7f7e4747f443b550d78b78394dbf981c6cc (diff) |
WIP fg sprite optimilization
Diffstat (limited to 'basys3/basys3.srcs/ppu_pceg_tb.vhd')
-rw-r--r-- | basys3/basys3.srcs/ppu_pceg_tb.vhd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/basys3/basys3.srcs/ppu_pceg_tb.vhd b/basys3/basys3.srcs/ppu_pceg_tb.vhd index 719ec06..86061a0 100644 --- a/basys3/basys3.srcs/ppu_pceg_tb.vhd +++ b/basys3/basys3.srcs/ppu_pceg_tb.vhd @@ -13,22 +13,22 @@ architecture behavioral of ppu_pceg_tb is CLK : in std_logic; -- system clock RESET : in std_logic; -- async reset SPRITE : out std_logic; -- sprite info fetch + sprite pixel fetch - COMP_PAL : out std_logic; -- compositor + palette lookup - DONE : out std_logic); -- last pipeline stage done + DONE : out std_logic; -- last pipeline stage done + READY : out std_logic); -- rgb buffer propagation ready end component; signal CLK : std_logic := '0'; signal RESET : std_logic := '0'; signal SPRITE : std_logic; - signal COMP_PAL : std_logic; signal DONE : std_logic; + signal READY : std_logic; begin uut : ppu_pceg port map( CLK => CLK, RESET => RESET, SPRITE => SPRITE, - COMP_PAL => COMP_PAL, - DONE => DONE); + DONE => DONE, + READY => READY); tb : process begin |