How can I convert this piece of verilog description:
- Code: Select all
always @(posedge clk) if (&addr) run <= 1'b0; else if (start) run <= 1'b1;
to VHDL:
- Code: Select all
process (clk):
begin
if (rising_edge(clk)) then
if (????) then
run <= '0';
elsif (start = '1') then
run <= '1';
end if;
end if;
end process;
The problem lies in the following expression:
(&addr)
Can someone help me to convert this expression?
Thank you in advance
Thoma