kbkdec15
Junior Member level 1
- Joined
- May 27, 2013
- Messages
- 18
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,397
following two set of statements are result same.
set1:
fd1 =$fopen("binary.txt","r");
fd2 =$fopen("binary.txt","w");
fd3 =$fopen("hex.txt","r");
fd4 =$fopen("hex.txt","w");
set2:
fd1 <=$fopen("binary.txt");
fd2 <=$fopen("binary.txt");
fd3 <=$fopen("hex.txt");
fd4 <=$fopen("hex.txt");
what is difference between use of blocking and non blocking in this case ?
the two sets are executed in ISE 12 tool.
please clarify this .
regards
kbkdec15
set1:
fd1 =$fopen("binary.txt","r");
fd2 =$fopen("binary.txt","w");
fd3 =$fopen("hex.txt","r");
fd4 =$fopen("hex.txt","w");
set2:
fd1 <=$fopen("binary.txt");
fd2 <=$fopen("binary.txt");
fd3 <=$fopen("hex.txt");
fd4 <=$fopen("hex.txt");
what is difference between use of blocking and non blocking in this case ?
the two sets are executed in ISE 12 tool.
please clarify this .
regards
kbkdec15