Hi everyone, I am using the Keil to compiler my tiny program which copy more than 64KB from SRAM to Flash. the CPU is Dallas DS80C400. according the CPU the DPTR should be 24-bit. after I use mov dps, #1 mov dptr, #400000 the dptr register ahows 0x4000 only 16-bit not 24-bit. Is there some configure I missed. Please help me. Thanks. Dezhong
mov dps, #1 mov dptr, #400000
Sorry, actually it is mov dps #1h mov dps #400000h I look as the document, it seem I have to use the PK51 DKIT, Because I use the evaluation version. it seems does not support the 24-bit mode. Thanks any way.