Re: [Qemu-devel] [PATCH 3/4] target-mips: add -semihosting-arg option and implement UHI Arg* ops

2015-03-01 Thread Matthew Fortune
Add new command line option -semihosting-arg. It is used for passing input arguments to the guest in semihosting mode. The option can be used multiple times. If n arguments are passed, then argument count (semihosting_argc) will be equal to n+1 as semihosting_argv[0] points at the program

[Qemu-devel] [PATCH 3/4] target-mips: add -semihosting-arg option and implement UHI Arg* ops

2015-02-27 Thread Leon Alrae
Add new command line option -semihosting-arg. It is used for passing input arguments to the guest in semihosting mode. The option can be used multiple times. If n arguments are passed, then argument count (semihosting_argc) will be equal to n+1 as semihosting_argv[0] points at the program name.