dtod.cc (10905:a6ca6831e775) dtod.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2004-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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 */
30
31/** @file
32 * Time of date device implementation
33 */
1/*
2 * Copyright (c) 2004-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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 */
30
31/** @file
32 * Time of date device implementation
33 */
34#include "dev/sparc/dtod.hh"
35
34#include <sys/time.h>
35
36#include <deque>
37#include <string>
38#include <vector>
39
40#include "base/time.hh"
41#include "base/trace.hh"
42#include "config/the_isa.hh"
36#include <sys/time.h>
37
38#include <deque>
39#include <string>
40#include <vector>
41
42#include "base/time.hh"
43#include "base/trace.hh"
44#include "config/the_isa.hh"
43#include "dev/sparc/dtod.hh"
44#include "dev/platform.hh"
45#include "mem/packet_access.hh"
46#include "mem/port.hh"
47#include "sim/system.hh"
48
49using namespace std;
50using namespace TheISA;
51

--- 46 unchanged lines hidden ---
45#include "dev/platform.hh"
46#include "mem/packet_access.hh"
47#include "mem/port.hh"
48#include "sim/system.hh"
49
50using namespace std;
51using namespace TheISA;
52

--- 46 unchanged lines hidden ---