Related questions
Writing a delay subroutine?
I need to write a delay subroutine. It should delay about 1 second. It has to be for 8051 environment, DS89C430 micrcontroller ( 11.0592 MHz XTAL). How can I write this subroutine?
Delay1sec: ...
....
...
....
...
What is JB used for here?
I'm trying to understand some example asm that came with a development board (XL400), with a view to converting it to C.
The asm code is included below, unfortunately the documentation, such as it is, is translated very badly from …
ADDC versus ADD
I'm trying to figure out the difference between ADDC and ADD instructions for 8051 microcontrollers.
Description: ADD and ADDC both add the value operand to the value of the Accumulator, leaving the resulting value in the Accumulator. The value operand is …