Re: [Qemu-devel] [PATCH 9/9] target-arm: Wire up HLT 0xf000 as the A64 semihosting instruction

2015-09-14 Thread Christopher Covington
Hi Peter, On 08/27/2015 02:35 PM, Peter Maydell wrote: > On 13 August 2015 at 17:35, Peter Maydell wrote: >> For the A64 instruction set, the semihosting call instruction >> is 'HLT 0xf000'. Wire this up to call do_arm_semihosting() >> if semihosting is enabled. >> >> Signed-off-by: Peter Maydell

Re: [Qemu-devel] [PATCH 9/9] target-arm: Wire up HLT 0xf000 as the A64 semihosting instruction

2015-08-27 Thread Peter Maydell
On 13 August 2015 at 17:35, Peter Maydell wrote: > For the A64 instruction set, the semihosting call instruction > is 'HLT 0xf000'. Wire this up to call do_arm_semihosting() > if semihosting is enabled. > > Signed-off-by: Peter Maydell > --- > @@ -1553,8 +1554,17 @@ static void disas_exc(DisasCo

Re: [Qemu-devel] [PATCH 9/9] target-arm: Wire up HLT 0xf000 as the A64 semihosting instruction

2015-08-20 Thread Christopher Covington
On Aug 13, 2015 9:35 AM, "Peter Maydell" wrote: > > For the A64 instruction set, the semihosting call instruction > is 'HLT 0xf000'. Wire this up to call do_arm_semihosting() > if semihosting is enabled. > > Signed-off-by: Peter Maydell Reviewed-by: Christopher Covington

[Qemu-devel] [PATCH 9/9] target-arm: Wire up HLT 0xf000 as the A64 semihosting instruction

2015-08-13 Thread Peter Maydell
For the A64 instruction set, the semihosting call instruction is 'HLT 0xf000'. Wire this up to call do_arm_semihosting() if semihosting is enabled. Signed-off-by: Peter Maydell --- linux-user/main.c | 3 +++ target-arm/cpu.h | 1 + target-arm/helper-a64.c| 6 ++ tar