Tagged Questions
The clockrates tag has no wiki summary.
7
votes
6answers
2k views
CPU Emulation and locking to a specific clock speed
If you had read my other question, you'll know I've spent this weekend putting together a 6502 CPU emulator as a programming exercise.
The CPU emulator is mostly complete, and seems to be fairly ...
2
votes
2answers
2k views
ARM LPC1768 UART0 configuration problem, wrong baud rate
My baud rate should be 115200, but it is 892.9
void UART0_Init(int pclk, int baudrate)
{
unsigned long int DLest;
//unsigned long int pclk;
unsigned int temp;
// Turn on power ...
2
votes
3answers
96 views
Drive an DAC from a stream that is clocked from another source?
My DAC is internally clocked at 48khz, I need to feed it from a stream that is also 48khz but is clocked from a different source.
The two sources will drift over time and any buffering in between ...
1
vote
0answers
24 views
How to change PC clock speed for individual programs? [migrated]
We have some older programs (no source code anymore) that run too fast on CPUs with faster clock speeds. I'm guessing that they were written using software delays ('X' number of CPU instructions per ...
0
votes
1answer
194 views
How do I set GPU core and memory clock programmatically on Windows?
Is there some API/library for this? I have an ATI Radeon 9000 Series graphics card and I need to lower its core/memory clock on Windows startup (I thought of making a small service for this but I ...
0
votes
2answers
54 views
Instructions per sec for Operating systems
I am new to Computer Architecture and Design. My question was a high level program Instruction set are executed in CPU one after another. Does it even involve Operating System instructions as overhead ...
0
votes
2answers
213 views
Can increment of a register be used to determine the clock rate?
Can increment of a register (in a loop) be used to determine the (effective) clock rate?
I've naturally assumed it can, but I was commented that Cpu's may implant Super-scalar techniques that make ...