| ??? 06/05/03 04:55 Read: times |
#47570 - RE: 8051 vs 6502... Responding to: ???'s previous message |
James:
Your choice really has to be made by looking VERY closely at how that 2K SRAM of the existing 6502 is used. If it holds a lot of data in the likes of arrays, tables, data structures, linked lists or just even 100s of global variables that are closely coupled as the data sources and destinations of various software algorithms in the code, THEN maybe an 8051 type processor is not the best choice unless you use something like a processor that can execute the following type of 8051 instructions:
MOV DPTR, #Abs16, (3 bytes - 2 cycles)
MOVX A, @DPTR (1 bytes - 2 cycles)
(On 12 MHz std 8051 this is 4 uSec)
... in the same time it takes the 6502 to run this type of instruction:
|



