capstone/arch/M68K
Thomas Huth 15286490fb m68k: Add support for the FNOP instruction (fixes #1916)
The FNOP instruction has the same encoding as FBF with zero displacement,
but according to the manual, it has some additional synchronization
functions, so it would be good if Capstone disassembles this with the
FNOP mnemonic instead of the FBF mnemonic.

Before this change:

$ cstool m68k40 0xf2800000
 0  f2 80 00 00  fbf.w	$2

After this change:

$ cstool m68k40 0xf2800000
 0  f2 80 00 00  fnop
2022-10-02 08:07:33 +02:00
..
M68KDisassembler.c m68k: Add support for the FNOP instruction (fixes #1916) 2022-10-02 08:07:33 +02:00
M68KDisassembler.h We can read more registers from M68K (#1151) 2018-06-02 01:08:54 +08:00
M68KInstPrinter.c Dont format sstreams when there's nothing to format 2021-12-10 10:59:16 +01:00
M68KInstPrinter.h Fix missing-prototypes warnings (#1348) 2019-01-22 08:43:02 +08:00
M68KInstructionTable.inc Constify backends (#1549) 2019-12-23 20:30:57 +08:00
M68KModule.c Declare global arch arrays with contents (next branch) (#1186) 2018-06-24 21:05:04 +08:00
M68KModule.h Declare global arch arrays with contents (next branch) (#1186) 2018-06-24 21:05:04 +08:00