[Qemu-devel] [PATCH 2/3] arm: semihosting: Create unsupported call function

2015-03-27 Thread Christopher Covington
This will allow the print-error-and-exit sequence to be called from a second location in a subsequent patch. The type of the nr variable is changed from int to uint32_t since I'm unaware of semihosting call numbers needing more than 32 bits, even on AArch64. Also generalize the wording of the unsup

Re: [Qemu-devel] [PATCH 2/3] arm: semihosting: Create unsupported call function

2015-03-27 Thread Peter Maydell
On 27 March 2015 at 16:22, Christopher Covington wrote: > This will allow the print-error-and-exit sequence to be called from a > second location in a subsequent patch. The type of the nr variable is > changed from int to uint32_t since I'm unaware of semihosting call > numbers needing more than 3