C
chaitanyakurmala@gmail.co
Guest
dear all
behavior: process(clk_in)
variable fifo_index : natural := 0;
--variable i : natural ;
variable fifo_buffer : buffer_type;
--variable req_temp : std_logic := '0';
in above fifo_index is defined as variable .so will fifo_index will be
initiated as zero. so in program fifo_index has been changed to some
other value say 10.
my doubt is that again when process is triggered for the second time
will fifo_index be 10 or it is again initialized to 0.
thank you
behavior: process(clk_in)
variable fifo_index : natural := 0;
--variable i : natural ;
variable fifo_buffer : buffer_type;
--variable req_temp : std_logic := '0';
in above fifo_index is defined as variable .so will fifo_index will be
initiated as zero. so in program fifo_index has been changed to some
other value say 10.
my doubt is that again when process is triggered for the second time
will fifo_index be 10 or it is again initialized to 0.
thank you