hello ,
i need help to understand how does each instruction fetch decode and execute in 8051 microcontroller
I made small project for LED blinking on proteus software
circuit
View attachment 18233
assembly code :
LED blinking assembly code
i need help to understand how does each instruction fetch decode and execute in 8051 microcontroller
I made small project for LED blinking on proteus software
circuit
View attachment 18233
assembly code :
Code:
ORG 0 MainLoop: setb P1.0 ; Turn LED ON Acall Delay ; Wait a short time clr P1.0 ; Turn LED OFF Acall Delay ; Wait a short time sjmp...