Skip to content
Snippets Groups Projects
Commit f124d215 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Replaced Windows LFCR by Linux LF to avoid ^R at end of line in vi (replace \r...

Replaced Windows LFCR by Linux LF to avoid ^R at end of line in vi (replace \r --> nothing). Removed trailing spaces.
parent 5c2cc725
No related branches found
No related tags found
2 merge requests!28Master,!15Resolve L2SDP-27
......@@ -107,7 +107,10 @@ BEGIN
FOR I IN 0 TO g_nof_masters-1 LOOP
IF master_mosi_arr(I).wr='1' OR master_mosi_arr(I).rd='1' THEN
index <= I; -- index of active master
EXIT;
EXIT; -- Found active master, no need to loop further. EXIT is not
-- realy needed, because there should be only one active
-- master, and if there are more active masters, then it
-- does not matter whether the first or the last is selected.
END IF;
END LOOP;
END PROCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment