1/*
2 * Copyright (c) 2002-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;

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

35#include "mem/physical.hh"
36#include "sim/byteswap.hh"
37#include "sim/builder.hh"
38
39
40using namespace BigEndianGuest;
41
42SparcSystem::SparcSystem(Params *p)
43 : System(p)
43 : System(p), sysTick(0)
44
45{
46 resetSymtab = new SymbolTable;
47 hypervisorSymtab = new SymbolTable;
48 openbootSymtab = new SymbolTable;
49
50
51 /**
52 * Load the boot code, and hypervisor into memory.

--- 149 unchanged lines hidden ---