This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

question about simulating in CCS for OMAP 3530

Other Parts Discussed in Thread: OMAP3530

I'm trying to adapt the Platform.tci from sim64P to use while simulating portions of my OMAP3530 app.

When I change the following section, main() never returns and my TSK0 function doesn't start:
var params = {
    clockRate: 330,
    catalogName: "ti.catalog.c6000",
    deviceName: "3530",
    regs: device_regs,
    mem: mem_ext
};

If I revert the deviceName to the original device for the sim64P platform, main() returns properly and my TSK0 function runs:
 var params = {
    clockRate: 330,
    catalogName: "ti.catalog.c6000",
    deviceName: "TCI6482",
    regs: device_regs,
    mem: mem_ext
};

Does the deviceName make a difference, and why does it break when I switch it 3530?  I'm using the C64x+ Cycle Accurate Simulator and BIOS 5.32.04.

Advice is appreciated!!