platform.hh (2846:89fbe74d8ea8) platform.hh (4059:e9cef915589f)
1/*
2 * Copyright (c) 2004-2005 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;

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

50class System;
51
52class Platform : public SimObject
53{
54 public:
55 /** Pointer to the interrupt controller */
56 IntrControl *intrctrl;
57
1/*
2 * Copyright (c) 2004-2005 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;

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

50class System;
51
52class Platform : public SimObject
53{
54 public:
55 /** Pointer to the interrupt controller */
56 IntrControl *intrctrl;
57
58 /** Pointer to the UART, set by the uart */
59 Uart *uart;
60
61 /** Pointer to the system for info about the memory system. */
62 System *system;
63
64 public:
65 Platform(const std::string &name, IntrControl *intctrl);
66 virtual ~Platform();
67 virtual void postConsoleInt() = 0;
68 virtual void clearConsoleInt() = 0;

--- 15 unchanged lines hidden ---
58 /** Pointer to the system for info about the memory system. */
59 System *system;
60
61 public:
62 Platform(const std::string &name, IntrControl *intctrl);
63 virtual ~Platform();
64 virtual void postConsoleInt() = 0;
65 virtual void clearConsoleInt() = 0;

--- 15 unchanged lines hidden ---