35d34
< abstract = True
52a52,58
> executable = Param.String('', "executable (overrides cmd[0] if set)")
> cmd = VectorParam.String("command line (executable plus arguments)")
> env = VectorParam.String([], "environment settings")
> cwd = Param.String('', "current working directory")
> simpoint = Param.UInt64(0, 'simulation point at which to start simulation')
> drivers = VectorParam.EmulatedDriver([], 'Available emulated drivers')
>
55c61
< code('bool map(Addr vaddr, Addr paddr, int size, bool cacheable=true);')
---
> code('bool map(Addr vaddr, Addr paddr, int sz, bool cacheable=true);')
62,72d67
<
< class LiveProcess(Process):
< type = 'LiveProcess'
< cxx_header = "sim/process.hh"
< executable = Param.String('', "executable (overrides cmd[0] if set)")
< cmd = VectorParam.String("command line (executable plus arguments)")
< env = VectorParam.String([], "environment settings")
< cwd = Param.String('', "current working directory")
< simpoint = Param.UInt64(0, 'simulation point at which to start simulation')
< drivers = VectorParam.EmulatedDriver([], 'Available emulated drivers')
<