R
RaymondCaleatry
Guest
I am using the Xilinx webpack software, and have implimented a basic single
port blockram, however, if i try to add any reset functionality, the
Xilinx webpack synthesizer complains that it is no longer block ram. Is
there any way to reset block ram to pre-deturmined settings.
Raymond
----------------------------------------------
process (PCI_CLK)
begin
if (PCI_CLK'event and PCI_CLK = '1') then
if (we = '1') then
CONFIG_SPACE(conv_integer(a)) <= di;
end if;
read_a <= a;
end if;
end process;
spo <= CONFIG_SPACE(conv_integer(read_a));
end syn;
port blockram, however, if i try to add any reset functionality, the
Xilinx webpack synthesizer complains that it is no longer block ram. Is
there any way to reset block ram to pre-deturmined settings.
Raymond
----------------------------------------------
process (PCI_CLK)
begin
if (PCI_CLK'event and PCI_CLK = '1') then
if (we = '1') then
CONFIG_SPACE(conv_integer(a)) <= di;
end if;
read_a <= a;
end if;
end process;
spo <= CONFIG_SPACE(conv_integer(read_a));
end syn;