From: Benjamin Nash Date: Tue, 16 Aug 2005 20:08:42 +0000 (-0400) Subject: Clean up freebsd_system.cc. X-Git-Tag: m5_1.1~47 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=568868d38ff141f5e7a009316ae3d36c60a33a0d;p=gem5.git Clean up freebsd_system.cc. kern/freebsd/freebsd_system.cc: Use htog instead of htoa. --HG-- extra : convert_revision : 09224d60ce5bb3827c9f046127ff6fc72fa008d6 --- diff --git a/kern/freebsd/freebsd_system.cc b/kern/freebsd/freebsd_system.cc index 35ac14330..5e0ce113b 100644 --- a/kern/freebsd/freebsd_system.cc +++ b/kern/freebsd/freebsd_system.cc @@ -41,6 +41,8 @@ #include "sim/builder.hh" #include "targetarch/vtophys.hh" +#define TIMER_FREQUENCY 1193180 + using namespace std; FreebsdSystem::FreebsdSystem(Params *p) @@ -85,8 +87,8 @@ FreebsdSystem::doCalibrateClocks(ExecContext *xc) uint8_t *ppc = physmem->dma_addr(ppc_paddr, sizeof(uint32_t)); uint8_t *timer = physmem->dma_addr(timer_paddr, sizeof(uint32_t)); - *(uint32_t *)ppc = htoa((uint32_t)2000000000); - *(uint32_t *)timer = htoa((uint32_t)1193180); + *(uint32_t *)ppc = htog((uint32_t)Clock::Frequency); + *(uint32_t *)timer = htog((uint32_t)TIMER_FREQUENCY); }