The system tick _compare_ register of USIII CPUs and up is ASR25, not

ASR24 (which is the system tick register).
This commit is contained in:
Marius Strobl 2005-08-07 13:21:00 +00:00
parent 639d7cbad1
commit d11b733f41

View File

@ -185,6 +185,6 @@ tick_stop(void)
{
if (cpu_impl >= CPU_IMPL_ULTRASPARCIII)
wr(asr24, 1L << 63, 0);
wr(asr25, 1L << 63, 0);
wrtickcmpr(1L << 63, 0);
}