language-vhdl icon indicating copy to clipboard operation
language-vhdl copied to clipboard

keyword "process"

Open zhanglongqi opened this issue 10 years ago • 3 comments

image

zhanglongqi avatar Oct 14 '15 12:10 zhanglongqi

Could you maybe upload the file? Cannot reproduce this locally:

screenshot 2015-10-14 16 52 50

Razer6 avatar Oct 14 '15 14:10 Razer6

http://pastebin.com/UGme2qmh I am using Atom 1.0.19

zhanglongqi avatar Oct 15 '15 09:10 zhanglongqi

Still present in 0.7.2. Failing example:

entity test is
  port (
	clock
  );
end entity;

architecture arch of test is

	signal processing: std_logic;

begin

test: process(clock)
begin
	if processing = '0' then
		processing <= '1';
	end if;
end process test;


end architecture;

LeChuck42 avatar Sep 07 '17 10:09 LeChuck42