Microcontroller
8051 Microcontroller
8051 specifications
Feature | ROM | RAM | Timers | I/O Pins | Serial Ports | Interrupt |
---|---|---|---|---|---|---|
8051 | 4KB | 128b | 2 | 32 | 1 | 6 |
8051 Instruction Set
It is case insensitive
MOV arg1, arg2
Copies the value of
arg2
toarg1
. To signify that a value is being used#
is used.ADD arg1, arg2
Adds
arg2
toarg1
and saves value inarg1
.arg1
should be accumulator.