How to check the value of a specific bit in vhdl

Guest #7122213
Rate this post
useful
not useful
Depending on what should be done, this could be a use case for a for 
loop:
1
for i in 0 to signle'high loop/generate
2
    if signle(i) = '1' then
3
        ...
4
    end if;
5
end loop/generate
I hope there is no syntax error, but the idea should be clear.

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now