B
burn.sir@spam-me-not-gmai
Guest
Hello group!
I just read "Advanced Synthesis Techniques" by Ian Lanq after
recommendation on this newsgroup.
With all respect to Ian, I have hard time understanding why this
article is so intreseting. I find some recommendations questuinable at
best. Also, some VHDL and verilog code seem to be a little odd. For
example, is the following code really valid VHDL (in the sense that it
will produce correct results during simulation AND synthesis)??
process (clock, reset_N)
begin
if reset_N = '0' then
TxWritten <= '0';
else
if clearTxWritten = '1' then
TxWritten <= '0';
elsif write = '1' and address = c_TX then
Tx <= writeData;
TxWritten <= '1';
end if;
end if;
end process;
It would be great to hear what you guys think about this.
- Burns
I just read "Advanced Synthesis Techniques" by Ian Lanq after
recommendation on this newsgroup.
With all respect to Ian, I have hard time understanding why this
article is so intreseting. I find some recommendations questuinable at
best. Also, some VHDL and verilog code seem to be a little odd. For
example, is the following code really valid VHDL (in the sense that it
will produce correct results during simulation AND synthesis)??
process (clock, reset_N)
begin
if reset_N = '0' then
TxWritten <= '0';
else
if clearTxWritten = '1' then
TxWritten <= '0';
elsif write = '1' and address = c_TX then
Tx <= writeData;
TxWritten <= '1';
end if;
end if;
end process;
It would be great to hear what you guys think about this.
- Burns