Disabling watchdog in assembly

  • Thread starter nothing909
  • Start date
  • Tags
    Assembly
In summary, the | symbol in assembly is a bitwise OR, just like in C. However, the exact meaning may vary depending on the specific assembly language and processor being used. It is important to specify which assembly language is being used to accurately understand the meaning of the symbol.
  • #1
nothing909
170
4
Homework Statement
Code:
mov.w   #WDTPW|WDTHOLD, &WDTCTL

What does the | symbol mean in assembly? I've been learning C and I've just recently started learning assembly. In C, the | symbol is a bitwise OR, but what does it mean in assembly?
 
Physics news on Phys.org
  • #3
Are you asking why a bitwise OR is performed?
 
  • #4
nothing909 said:
What does the | symbol mean in assembly? I've been learning C and I've just recently started learning assembly. In C, the | symbol is a bitwise OR, but what does it mean in assembly?
There is no such thing as generic "assembly." Each processor family (Intel/AMD x86, Intel Itanium, Motorola 68000, ARM, MIPS, etc.) has its own assembly language. You have to specify which kind of assembly language you're working with.
 

Related to Disabling watchdog in assembly

1. What is a watchdog timer in assembly?

A watchdog timer in assembly is a hardware component that functions as a timer to monitor the execution of a program. It is commonly used in embedded systems to prevent software malfunctions and ensure system stability.

2. Why would someone want to disable the watchdog timer in assembly?

There are several reasons why someone may want to disable the watchdog timer in assembly. One reason could be to test and debug the program without the timer constantly resetting the system. Another reason could be to customize the behavior of the timer for specific applications.

3. How can the watchdog timer be disabled in assembly?

The method for disabling the watchdog timer in assembly varies depending on the specific hardware and system configuration. In general, it involves accessing the control registers of the timer and setting a specific bit or flag to disable it. Consult the documentation for your specific hardware for the exact steps.

4. Are there any risks associated with disabling the watchdog timer in assembly?

Yes, disabling the watchdog timer can potentially lead to system malfunctions or crashes if the program is not properly tested and debugged. It is important to understand the purpose and function of the timer before disabling it and to thoroughly test the program to ensure system stability.

5. Can the watchdog timer be re-enabled after it has been disabled in assembly?

Yes, in most cases the watchdog timer can be re-enabled after it has been disabled in assembly. This can typically be done by accessing the control registers and setting the appropriate bit or flag to enable the timer again. However, it is important to note that re-enabling the timer may not always be possible, depending on the specific hardware and system configuration.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
3
Views
990
  • Programming and Computer Science
Replies
16
Views
2K
  • Electrical Engineering
Replies
2
Views
4K
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
10K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
5K
  • Programming and Computer Science
Replies
3
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
2K
Back
Top