system.cc (9142:e9b713df4e1d) system.cc (9147:05137f17887e)
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

106 tmp_id = getMasterId("functional");
107 assert(tmp_id == Request::funcMasterId);
108 tmp_id = getMasterId("interrupt");
109 assert(tmp_id == Request::intMasterId);
110
111 if (FullSystem) {
112 if (params()->kernel == "") {
113 inform("No kernel set for full system simulation. "
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

106 tmp_id = getMasterId("functional");
107 assert(tmp_id == Request::funcMasterId);
108 tmp_id = getMasterId("interrupt");
109 assert(tmp_id == Request::intMasterId);
110
111 if (FullSystem) {
112 if (params()->kernel == "") {
113 inform("No kernel set for full system simulation. "
114 "Assuming you know what you're doing if not SPARC ISA\n");
114 "Assuming you know what you're doing\n");
115
116 kernel = NULL;
115 } else {
116 // Get the kernel code
117 kernel = createObjectFile(params()->kernel);
118 inform("kernel located at: %s", params()->kernel);
119
120 if (kernel == NULL)
121 fatal("Could not load kernel file %s", params()->kernel);
122

--- 323 unchanged lines hidden ---
117 } else {
118 // Get the kernel code
119 kernel = createObjectFile(params()->kernel);
120 inform("kernel located at: %s", params()->kernel);
121
122 if (kernel == NULL)
123 fatal("Could not load kernel file %s", params()->kernel);
124

--- 323 unchanged lines hidden ---