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!!