Electronic Components Datasheet Search
  English  ▼
ALLDATASHEET.COM

X  

VRS51C1000-40-Q-ISPV2 Datasheet(PDF) 4 Page - Ramtron International Corporation

Part # VRS51C1000-40-Q-ISPV2
Description  Versa 8051 MCU with 64KB of IAP/ISP Flash
Download  48 Pages
Scroll/Zoom Zoom In 100%  Zoom Out
Manufacturer  RAMTRON [Ramtron International Corporation]
Direct Link  http://www.ramtron.com
Logo RAMTRON - Ramtron International Corporation

VRS51C1000-40-Q-ISPV2 Datasheet(HTML) 4 Page - Ramtron International Corporation

  VRS51C1000-40-Q-ISPV2 Datasheet HTML 1Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 2Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 3Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 4Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 5Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 6Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 7Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 8Page - Ramtron International Corporation VRS51C1000-40-Q-ISPV2 Datasheet HTML 9Page - Ramtron International Corporation Next Button
Zoom Inzoom in Zoom Outzoom out
 4 / 48 page
background image
VRS51C1000
______________________________________________________________________________________________
www.ramtron.com
page 4 of 48
Instruction Set
The following table describes the instruction set of the
VRS51C1000.
The instructions are function and binary
code compatible with industry standard 8051s.
Table 3: Legend for Instruction Set Table
Symbol
Function
A
Accumulator
Rn
Register R0-R7
Direct
Internal register address
@Ri
Internal register pointed to by R0 or R1 (except MOVX)
rel
Two's complement offset byte
bit
Direct bit address
#data
8-bit constant
#data 16
16-bit constant
addr 16
16-bit destination address
addr 11
11-bit destination address
TABLE 4: VRS51C1000 INSTRUCTION SET
Mnemonic
Description
Size
(bytes)
Instr. Cycles
Arithmetic instructions
ADD A, Rn
Add register to A
1
1
ADD A, direct
Add direct byte to A
2
1
ADD A, @Ri
Add data memory to A
1
1
ADD A, #data
Add immediate to A
2
1
ADDC A, Rn
Add register to A with carry
1
1
ADDC A, direct
Add direct byte to A with carry
2
1
ADDC A, @Ri
Add data memory to A with carry
1
1
ADDC A, #data
Add immediate to A with carry
2
1
SUBB A, Rn
Subtract register from A with borrow
1
1
SUBB A, direct
Subtract direct byte from A with borrow
2
1
SUBB A, @Ri
Subtract data mem from A with borrow
1
1
SUBB A, #data
Subtract immediate from A with borrow
2
1
INC A
Increment A
1
1
INC Rn
Increment register
1
1
INC direct
Increment direct byte
2
1
INC @Ri
Increment data memory
1
1
DEC A
Decrement A
1
1
DEC Rn
Decrement register
1
1
DEC direct
Decrement direct byte
2
1
DEC @Ri
Decrement data memory
1
1
INC DPTR
Increment data pointer
1
2
MUL AB
Multiply A by B
1
4
DIV AB
Divide A by B
1
4
DA A
Decimal adjust A
1
1
Logical Instructions
ANL A, Rn
AND register to A
1
1
ANL A, direct
AND direct byte to A
2
1
ANL A, @Ri
AND data memory to A
1
1
ANL A, #data
AND immediate to A
2
1
ANL direct, A
AND A to direct byte
2
1
ANL direct, #data
AND immediate data to direct byte
3
2
ORL A, Rn
OR register to A
1
1
ORL A, direct
OR direct byte to A
2
1
ORL A, @Ri
OR data memory to A
1
1
ORL A, #data
OR immediate to A
2
1
ORL direct, A
OR A to direct byte
2
1
ORL direct, #data
OR immediate data to direct byte
3
2
XRL A, Rn
Exclusive-OR register to A
1
1
XRL A, direct
Exclusive-OR direct byte to A
2
1
XRL A, @Ri
Exclusive-OR data memory to A
1
1
XRL A, #data
Exclusive-OR immediate to A
2
1
XRL direct, A
Exclusive-OR A to direct byte
2
1
XRL direct, #data
Exclusive-OR immediate to direct byte
3
2
CLR A
Clear A
1
1
CPL A
Compliment A
1
1
SWAP A
Swap nibbles of A
1
1
RL A
Rotate A left
1
1
RLC A
Rotate A left through carry
1
1
RR A
Rotate A right
1
1
RRC A
Rotate A right through carry
1
1
Mnemonic
Description
Size
(bytes)
Instr. Cycles
Boolean Instruction
CLR C
Clear Carry bit
1
1
CLR bit
Clear bit
2
1
SETB C
Set Carry bit to 1
1
1
SETB bit
Set bit to 1
2
1
CPL C
Complement Carry bit
1
1
CPL bit
Complement bit
2
1
ANL C,bit
Logical AND between Carry and bit
2
2
ANL C,#bit
Logical AND between Carry and not bit
2
2
ORL C,bit
Logical ORL between Carry and bit
2
2
ORL C,#bit
Logical ORL between Carry and not bit
2
2
MOV C,bit
Copy bit value into Carry
2
1
MOV bit,C
Copy Carry value into Bit
2
2
Data Transfer Instructions
MOV A, Rn
Move register to A
1
1
MOV A, direct
Move direct byte to A
2
1
MOV A, @Ri
Move data memory to A
1
1
MOV A, #data
Move immediate to A
2
1
MOV Rn, A
Move A to register
1
1
MOV Rn, direct
Move direct byte to register
2
2
MOV Rn, #data
Move immediate to register
2
1
MOV direct, A
Move A to direct byte
2
1
MOV direct, Rn
Move register to direct byte
2
2
MOV direct, direct
Move direct byte to direct byte
3
2
MOV direct, @Ri
Move data memory to direct byte
2
2
MOV direct, #data
Move immediate to direct byte
3
2
MOV @Ri, A
Move A to data memory
1
1
MOV @Ri, direct
Move direct byte to data memory
2
2
MOV @Ri, #data
Move immediate to data memory
2
1
MOV DPTR, #data
Move immediate to data pointer
3
2
MOVC A, @A+DPTR
Move code byte relative DPTR to A
1
2
MOVC A, @A+PC
Move code byte relative PC to A
1
2
MOVX A, @Ri
Move external data (A8) to A
1
2
MOVX A, @DPTR
Move external data (A16) to A
1
2
MOVX @Ri, A
Move A to external data (A8)
1
2
MOVX @DPTR, A
Move A to external data (A16)
1
2
PUSH direct
Push direct byte onto stack
2
2
POP direct
Pop direct byte from stack
2
2
XCH A, Rn
Exchange A and register
1
1
XCH A, direct
Exchange A and direct byte
2
1
XCH A, @Ri
Exchange A and data memory
1
1
XCHD A, @Ri
Exchange A and data memory nibble
1
1
Branching Instructions
ACALL addr 11
Absolute call to subroutine
2
2
LCALL addr 16
Long call to subroutine
3
2
RET
Return from subroutine
1
2
RETI
Return from interrupt
1
2
AJMP addr 11
Absolute jump unconditional
2
2
LJMP addr 16
Long jump unconditional
3
2
SJMP rel
Short jump (relative address)
2
2
JC rel
Jump on carry = 1
2
2
JNC rel
Jump on carry = 0
2
2
JB bit, rel
Jump on direct bit = 1
3
2
JNB bit, rel
Jump on direct bit = 0
3
2
JBC bit, rel
Jump on direct bit = 1 and clear
3
2
JMP @A+DPTR
Jump indirect relative DPTR
1
2
JZ rel
Jump on accumulator = 0
2
2
JNZ rel
Jump on accumulator 1= 0
2
2
CJNE A, direct, rel
Compare A, direct JNE relative
3
2
CJNE A, #d, rel
Compare A, immediate JNE relative
3
2
CJNE Rn, #d, rel
Compare reg, immediate JNE relative
3
2
CJNE @Ri, #d, rel
Compare ind, immediate JNE relative
3
2
DJNZ Rn, rel
Decrement register, JNZ relative
2
2
DJNZ direct, rel
Decrement direct byte, JNZ relative
3
2
Miscellaneous Instruction
NOP
No operation
1
1
Rn:
Any of the register R0 to R7
@Ri:
Indirect addressing using Register R0 or R1
#data:
immediate Data provided with Instruction
#data16: Immediate data included with instruction
bit:
address at the bit level
rel:
relative address to Program counter from +127 to –128
Addr11: 11-bit address range
Addr16: 16-bit address range
#d:
Immediate Data supplied with instruction


Similar Part No. - VRS51C1000-40-Q-ISPV2

ManufacturerPart #DatasheetDescription
logo
List of Unclassifed Man...
VRS51C1100 ETC1-VRS51C1100 Datasheet
2Mb / 50P
   Versa 8051 MCU with 128KB of IAP/ISP Flash
VRS51C1100-40-L ETC1-VRS51C1100-40-L Datasheet
2Mb / 50P
   Versa 8051 MCU with 128KB of IAP/ISP Flash
VRS51C1100-40-LG ETC1-VRS51C1100-40-LG Datasheet
2Mb / 50P
   Versa 8051 MCU with 128KB of IAP/ISP Flash
VRS51C1100-40-P ETC1-VRS51C1100-40-P Datasheet
2Mb / 50P
   Versa 8051 MCU with 128KB of IAP/ISP Flash
VRS51C1100-40-PG ETC1-VRS51C1100-40-PG Datasheet
2Mb / 50P
   Versa 8051 MCU with 128KB of IAP/ISP Flash
More results

Similar Description - VRS51C1000-40-Q-ISPV2

ManufacturerPart #DatasheetDescription
logo
Ramtron International C...
VRS51L1050 RAMTRON-VRS51L1050 Datasheet
504Kb / 49P
   Versa 8051 3.3V MCU with 64KB of IAP/ISP Flash
logo
List of Unclassifed Man...
VRS51C1100 ETC1-VRS51C1100 Datasheet
2Mb / 50P
   Versa 8051 MCU with 128KB of IAP/ISP Flash
VRS51X540 ETC1-VRS51X540 Datasheet
1Mb / 40P
   Versa 8051 MCU with 4KB Flash
C8051F042 ETC-C8051F042 Datasheet
191Kb / 2P
   CAN2.0B 64KB ISP FLASH MCU
C8051F040 ETC-C8051F040 Datasheet
190Kb / 2P
   CAN2.0B 64KB ISP FLASH MCU
C8051F041 ETC-C8051F041 Datasheet
191Kb / 2P
   CAN2.0B 64KB ISP FLASH MCU
C8051F043 ETC-C8051F043 Datasheet
190Kb / 2P
   CAN2.0B 64KB ISP FLASH MCU
VRS51X570 ETC1-VRS51X570 Datasheet
2Mb / 49P
   Versa 8051 MCUs with 32/64KB
C8051F022 ETC-C8051F022 Datasheet
51Kb / 2P
   Mixed-Signal 64KB ISP FLASH MCU
VRS1000 ETC1-VRS1000 Datasheet
741Kb / 47P
   64kB Embedded ISP/IAP FLASH 1kB RAM, 40 MHz, 8-Bit MCU
More results


Html Pages

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48


Datasheet Download

Go To PDF Page


Link URL




Privacy Policy
ALLDATASHEET.COM
Does ALLDATASHEET help your business so far?  [ DONATE ] 

About Alldatasheet   |   Advertisement   |   Datasheet Upload   |   Contact us   |   Privacy Policy   |   Link Exchange   |   Manufacturer List
All Rights Reserved©Alldatasheet.com


Mirror Sites
English : Alldatasheet.com  |   English : Alldatasheet.net  |   Chinese : Alldatasheetcn.com  |   German : Alldatasheetde.com  |   Japanese : Alldatasheet.jp
Russian : Alldatasheetru.com  |   Korean : Alldatasheet.co.kr  |   Spanish : Alldatasheet.es  |   French : Alldatasheet.fr  |   Italian : Alldatasheetit.com
Portuguese : Alldatasheetpt.com  |   Polish : Alldatasheet.pl  |   Vietnamese : Alldatasheet.vn
Indian : Alldatasheet.in  |   Mexican : Alldatasheet.com.mx  |   British : Alldatasheet.co.uk  |   New Zealand : Alldatasheet.co.nz
Family Site : ic2ic.com  |   icmetro.com