Deleted Added
sdiff udiff text old ( 8769:f95b2a679eb0 ) new ( 8773:ac39e3421c34 )
full compact
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;

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

57 "exit simulation when work items begin count value is reached")
58 work_end_ckpt_count = Param.Counter(0,
59 "create checkpoint when work items end count value is reached")
60 work_end_exit_count = Param.Counter(0,
61 "exit simulation when work items end count value is reached")
62 work_cpus_ckpt_count = Param.Counter(0,
63 "create checkpoint when active cpu count value is reached")
64
65 init_param = Param.UInt64(0, "numerical value to pass into simulator")
66 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
67 kernel = Param.String("", "file that contains the kernel code")
68 readfile = Param.String("", "file to read startup script from")
69 symbolfile = Param.String("", "file to get the symbols from")
70 load_addr_mask = Param.UInt64(0xffffffffff,
71 "Address to mask loading binaries with");