Clean up freebsd_system.cc.
authorBenjamin Nash <benash@umich.edu>
Tue, 16 Aug 2005 20:08:42 +0000 (16:08 -0400)
committerBenjamin Nash <benash@umich.edu>
Tue, 16 Aug 2005 20:08:42 +0000 (16:08 -0400)
kern/freebsd/freebsd_system.cc:
    Use htog instead of htoa.

--HG--
extra : convert_revision : 09224d60ce5bb3827c9f046127ff6fc72fa008d6

kern/freebsd/freebsd_system.cc

index 35ac14330f9a0c33259cd09bf069b2a9a0a6140a..5e0ce113bbe5daec4664708f4e9bd12a3890ffbd 100644 (file)
@@ -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);
 }