Vimalab
Banned
- Joined
- Oct 1, 2014
- Messages
- 12
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 0
What is the meaning of this statement "data<=8'h44" in verilog code?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'h means hexidecimalData <= 8'h44
means here data input is 00101100(binary format of 44)
or
data input is 8 bit its taking hexa value as 44.
In both which statement is true?