1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 21 unchanged lines hidden (view full) ---

30 */
31
32#include <iostream>
33#include <string>
34
35#include "base/callback.hh"
36#include "base/output.hh"
37#include "sim/core.hh"
38#include "sim/eventq.hh"
39
40using namespace std;
41
41Tick _curTick = 0;
42
42namespace SimClock {
43/// The simulated frequency of curTick(). (In ticks per second)
44Tick Frequency;
45
46namespace Float {
47double s;
48double ms;
49double us;

--- 81 unchanged lines hidden ---