mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-03-21 10:12:14 -06:00
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:
parent
9a3ea65402
commit
731abc0d22
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue