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.
I am using Timer0 for benchmarking and expected this timer to be running at 100Mhz. Using the profiler and analyzing CPU cycles it looks like it is running at 75Mhz. I could not find info for the rate in any documents, but looking at the configuration file "tisim_672x_cpu_simulator.cfg" it has a line "CLOCK_FREQ 100;".
I am using CCS4.
Hi,
The timer clock divide ratio is 1:4 with respect to CPU clock. Hence you should see timer running at 25MHz taking CPU clock as 100 MHz. This means for every 4 CPU clocks the simulator would 1 clock to timer.
regards,
Sheshadri
Thanks Sheshadri, this makes sense now, the CPU is running at 300Mhz so the timer is running at 75Mhz. Where is this timer clock divide ratio (1:4) documented?