8051 Development Setup: Final test
Execute MIDE-51.exe and File-->New (Ctrl+N), edit this code
#include "p89v51rd2.h"
unsigned char i;
void main() {
i=10;
}
Save to anyname.c and then Build (F9). You will found many files in the directory, one of them is .HEX file which can be downloaded to your MCU by using FlashMagic. Or, you can simulate it by using Jsim51, Build and Sim (Shift+Ctrl+F9).
Note: I tested on my P89V51RD2 MPU. Enjoy your 8051 microcontroller.
#include "p89v51rd2.h"
unsigned char i;
void main() {
i=10;
}
Save to anyname.c and then Build (F9). You will found many files in the directory, one of them is .HEX file which can be downloaded to your MCU by using FlashMagic. Or, you can simulate it by using Jsim51, Build and Sim (Shift+Ctrl+F9).
Note: I tested on my P89V51RD2 MPU. Enjoy your 8051 microcontroller.
Comments
Post a Comment