System.py (9814:7ad2b0186a32) System.py (10037:5cac77888310)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
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;

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

81 "create checkpoint when active cpu count value is reached")
82
83 init_param = Param.UInt64(0, "numerical value to pass into simulator")
84 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
85 kernel = Param.String("", "file that contains the kernel code")
86 readfile = Param.String("", "file to read startup script from")
87 symbolfile = Param.String("", "file to get the symbols from")
88 load_addr_mask = Param.UInt64(0xffffffffff,
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
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;

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

81 "create checkpoint when active cpu count value is reached")
82
83 init_param = Param.UInt64(0, "numerical value to pass into simulator")
84 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
85 kernel = Param.String("", "file that contains the kernel code")
86 readfile = Param.String("", "file to read startup script from")
87 symbolfile = Param.String("", "file to get the symbols from")
88 load_addr_mask = Param.UInt64(0xffffffffff,
89 "Address to mask loading binaries with");
89 "Address to mask loading binaries with")
90 load_offset = Param.UInt64(0, "Address to offset loading binaries with")