Re: [PATCH] target/m68k: Allow movec only on 68010+

2020-05-02 Thread Laurent Vivier
Le 02/05/2020 à 03:38, BALATON Zoltan a écrit : > On Fri, 1 May 2020, Laurent Vivier wrote: >> Le 01/05/2020 à 15:11, BALATON Zoltan a écrit : >>> Ping? >> >> I sent a comment: >> >> https://lists.gnu.org/archive/html/qemu-devel/2020-01/msg02840.html > > Thanks, I've somehow missed that, did not

Re: [PATCH] target/m68k: Allow movec only on 68010+

2020-05-01 Thread BALATON Zoltan
On Fri, 1 May 2020, Laurent Vivier wrote: Le 01/05/2020 à 15:11, BALATON Zoltan a écrit : Ping? I sent a comment: https://lists.gnu.org/archive/html/qemu-devel/2020-01/msg02840.html Thanks, I've somehow missed that, did not show up in my inbox for some reason. I wasn't sure about the FPU

Re: [PATCH] target/m68k: Allow movec only on 68010+

2020-05-01 Thread Laurent Vivier
Le 01/05/2020 à 15:11, BALATON Zoltan a écrit : > Ping? I sent a comment: https://lists.gnu.org/archive/html/qemu-devel/2020-01/msg02840.html Thanks, Laurent > > On Tue, 14 Jan 2020, BALATON Zoltan wrote: >> The movec opcode does not exist on 68000 and should raise an >> exception. Fix the

Re: [PATCH] target/m68k: Allow movec only on 68010+

2020-05-01 Thread BALATON Zoltan
Ping? On Tue, 14 Jan 2020, BALATON Zoltan wrote: The movec opcode does not exist on 68000 and should raise an exception. Fix the feature mask to only allow movec on newer 68k CPUs. Signed-off-by: BALATON Zoltan --- target/m68k/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [PATCH] target/m68k: Allow movec only on 68010+

2020-01-14 Thread Laurent Vivier
Le 14/01/2020 à 21:13, BALATON Zoltan a écrit : > The movec opcode does not exist on 68000 and should raise an > exception. Fix the feature mask to only allow movec on newer 68k CPUs. > > Signed-off-by: BALATON Zoltan > --- > target/m68k/translate.c | 2 +- > 1 file changed, 1 insertion(+), 1

[PATCH] target/m68k: Allow movec only on 68010+

2020-01-14 Thread BALATON Zoltan
The movec opcode does not exist on 68000 and should raise an exception. Fix the feature mask to only allow movec on newer 68k CPUs. Signed-off-by: BALATON Zoltan --- target/m68k/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/m68k/translate.c