Digital Electronics - The 8051 Microcontroller - Discussion

Discussion Forum : The 8051 Microcontroller - General Questions (Q.No. 21)
21.
Which of the following instructions will load the value 35H into the high byte of timer 0?
MOV TH0, #35H
MOV TH0, 35H
MOV T0, #35H
MOV T0, 35H
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Navrin Aashika said:   9 years ago
TO is a timer pin used to give delay pulses whereas THO is special function register where we can store data.

Khan said:   9 years ago
What is the difference between MOV TH0 and MOV T0?

Anyone can tell?

Sachin ligade said:   1 decade ago
'#' symbol is used for indication of number. when number is used without '#' symbol it means that the same number is representing address.
e.g.
#35H - hex number 35.
35H - hex number indicating address.

Asha said:   1 decade ago
In 8051 Microcontroller '#' symbol is the indication of moving immediate data into the register mentioned in the instruction.

Post your comments here:

Your comments will be displayed after verification.