sim-card
/
qemu
Archived
10
0
Fork 0

ETRAX: Correct the frequency of the free-running counter.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6101 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
edgar_igl 2008-12-19 12:57:18 +00:00
parent 9a3ea65402
commit 731abc0d22
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ static uint32_t timer_readl (void *opaque, target_phys_addr_t addr)
D(printf ("R_TMR1_DATA\n"));
break;
case R_TIME:
r = qemu_get_clock(vm_clock) * 10;
r = qemu_get_clock(vm_clock) / 10;
break;
case RW_INTR_MASK:
r = t->rw_intr_mask;