Experiment: Dyna - 8051
Experiment: Dyna - 8051
Introduction:
8051 is one of the first and most popular microcontrollers also known as MCS-
51. Intel introduced it in the year 1981. Initially, it came out as an N-type
metal-oxide-semiconductor (NMOS) based microcontroller, but later versions
were based on complementary metal-oxide-semiconductor (CMOS)
technology. These microcontrollers were named 80C51, where C in the name
tells that it is based on CMOS technology. It is an 8-bit microcontroller which
means the data bus is 8-bit. Therefore, it can process 8 bits at a time. It is used
in a wide variety of embedded systems like robotics, remote controls, the
automotive industry, telecom applications, power tools, etc.
1)Program: Copy memory
Syntax: C strt end destination<CR>
When using C command, the contents of the memory block from the "strt
address” to "end address" are moved to consecutive memory locations
beginning at "destination address".
RULES:
1. Destination should be greater than Strt address.
Rules :
1. strt address should be less than end address
2. strt should lie in RAM area.
3) Program: DL Delete Byte
Syntax: DL strt end <CR>
This command is used to delete a data byte in a given block of memory.
The remaining block shifts up by one position, up to the end address specified.
RULES:
1. strt address should be less than end address.
2. Addresses are accepted as hex value.
3. If strt address lies in program memory, then end address should not lie in data
memory.
4.In the LOCAL mode press 'Enter' key to display next screen and 'ESC' key to return to
command prompt.