C51 Uvision | Keil
Embedded Systems Development using Keil μVision IDE for the 8051 Microcontroller (C51)
void delay_ms(unsigned int ms) unsigned int i, j; for(i = 0; i < ms; i++) for(j = 0; j < 123; j++); // Approx 1ms at 12MHz keil c51 uvision
void main(void) while(1) LED = 0; // Turn LED ON (active low assumed) delay_ms(500); LED = 1; // Turn LED OFF delay_ms(500); Embedded Systems Development using Keil μVision IDE for
| Action | Shortcut | |--------|----------| | Build | F7 | | Start/Stop Debug | Ctrl+F5 | | Step Over | F10 | | Step Into | F11 | | Toggle Breakpoint | F9 | for(i = 0

