fix DPC and reconstruct isp
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
`timescale 1ns / 1ps
|
||||
|
||||
module DiffWidthSyncFIFO #(
|
||||
parameter reg [7:0] DATA_WIDTH = 8,
|
||||
parameter reg [7:0] DATA_DEPTH = 12,
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
`timescale 1ns/1ps
|
||||
|
||||
module RGB_to_RAM #(
|
||||
parameter COLOR_DEPTH = 8,
|
||||
parameter FIFO_SIZE = 128
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
`timescale 1ns / 1ps
|
||||
`include "DiffWidthSyncFIFO.v"
|
||||
`default_nettype none
|
||||
|
||||
module tb_DiffWidthSyncFIFO;
|
||||
@@ -49,7 +47,7 @@ module tb_DiffWidthSyncFIFO;
|
||||
clk = 0;
|
||||
reset = 1;
|
||||
write_en = 0;
|
||||
for(j = 0; j < WRITE_DEPTH; j = j + 1)begin
|
||||
for (j = 0; j < WRITE_DEPTH; j = j + 1) begin
|
||||
write_data[j] = 0;
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user