diff --git a/librz/arch/p/analysis/analysis_alpha_cs.c b/librz/arch/p/analysis/analysis_alpha_cs.c index 317a170639..dc34f28f3d 100644 --- a/librz/arch/p/analysis/analysis_alpha_cs.c +++ b/librz/arch/p/analysis/analysis_alpha_cs.c @@ -459,7 +459,7 @@ static bool alpha_fini(void *u) { RzAnalysisPlugin rz_analysis_plugin_alpha_cs = { .name = "alpha", - .desc = "Capstone Alpha analysis plugin", + .desc = "DEC Alpha Capstone-based disassembler", .license = "LGPL3", .arch = "alpha", .bits = 64, diff --git a/librz/arch/p/asm/asm_8051.c b/librz/arch/p/asm/asm_8051.c index cab74cf5a6..5e182447b7 100644 --- a/librz/arch/p/asm/asm_8051.c +++ b/librz/arch/p/asm/asm_8051.c @@ -32,7 +32,7 @@ RzAsmPlugin rz_asm_plugin_8051 = { .arch = "8051", .bits = 8, .endian = RZ_SYS_ENDIAN_NONE, - .desc = "8051 Intel CPU", + .desc = "Intel 8051 disassembler", .disassemble = &disassemble, .assemble = &assemble_8051, .license = "PD", diff --git a/librz/arch/p/asm/asm_alpha_cs.c b/librz/arch/p/asm/asm_alpha_cs.c index 4363ab12ec..db00945c4f 100644 --- a/librz/arch/p/asm/asm_alpha_cs.c +++ b/librz/arch/p/asm/asm_alpha_cs.c @@ -103,7 +103,7 @@ static bool fini(void *u) { RzAsmPlugin rz_asm_plugin_alpha_cs = { .name = "alpha", - .desc = "Capstone Alpha disassembler", + .desc = "DEC Alpha Capstone-based disassembler", .license = "LGPL3", .arch = "alpha", .bits = 64, diff --git a/librz/arch/p/asm/asm_amd29k.c b/librz/arch/p/asm/asm_amd29k.c index fb375fdc53..7ad21ae91a 100644 --- a/librz/arch/p/asm/asm_amd29k.c +++ b/librz/arch/p/asm/asm_amd29k.c @@ -28,7 +28,7 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_amd29k = { .name = "amd29k", .license = "LGPL3", - .desc = "AMD 29k RISC CPU", + .desc = "AMD 29k RISC disassembler", .author = "deroad", .arch = CPU_29000 "," CPU_29050, .cpus = "amd29k", diff --git a/librz/arch/p/asm/asm_arm_cs.c b/librz/arch/p/asm/asm_arm_cs.c index 582076756e..d559f06eff 100644 --- a/librz/arch/p/asm/asm_arm_cs.c +++ b/librz/arch/p/asm/asm_arm_cs.c @@ -299,7 +299,7 @@ char **arm_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_arm_cs = { .name = "arm", - .desc = "Capstone ARM disassembler", + .desc = "ARM Capstone-based disassembler", .cpus = "arm,v8,cortexm,arm1176,cortexA72,cortexA8", .platforms = "bcm2835,omap3430", .features = "v8", diff --git a/librz/arch/p/asm/asm_avr.c b/librz/arch/p/asm/asm_avr.c index 2d797292ce..78c9253226 100644 --- a/librz/arch/p/asm/asm_avr.c +++ b/librz/arch/p/asm/asm_avr.c @@ -65,7 +65,7 @@ RzAsmPlugin rz_asm_plugin_avr = { .license = "LGPL3", .bits = 8 | 16, .endian = RZ_SYS_ENDIAN_LITTLE | RZ_SYS_ENDIAN_BIG, - .desc = "AVR Atmel", + .desc = "Atmel AVR disassembler", .disassemble = &disassemble, .assemble = &assemble, .cpus = diff --git a/librz/arch/p/asm/asm_cil.c b/librz/arch/p/asm/asm_cil.c index 7dd9821bd0..8c20318622 100644 --- a/librz/arch/p/asm/asm_cil.c +++ b/librz/arch/p/asm/asm_cil.c @@ -17,7 +17,7 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_cil = { .name = "cil", .arch = "cil", - .desc = ".NET Common Intermediate Language", + .desc = ".NET CIL/MSIL (Common Intermediate Language) bytecode disassembler", .license = "LGPL3", .bits = 16 | 32 | 64, .disassemble = &disassemble, diff --git a/librz/arch/p/asm/asm_cr16.c b/librz/arch/p/asm/asm_cr16.c index 724369a197..01f3a2dc30 100644 --- a/librz/arch/p/asm/asm_cr16.c +++ b/librz/arch/p/asm/asm_cr16.c @@ -22,7 +22,7 @@ static int cr16_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_cr16 = { .name = "cr16", .license = "LGPL3", - .desc = "cr16 disassembly plugin", + .desc = "CompactRISC CR16 disassembler", .arch = "cr16", .bits = 16, .endian = RZ_SYS_ENDIAN_LITTLE, diff --git a/librz/arch/p/asm/asm_dalvik.c b/librz/arch/p/asm/asm_dalvik.c index 8dc18ce648..4c25a4d2c2 100644 --- a/librz/arch/p/asm/asm_dalvik.c +++ b/librz/arch/p/asm/asm_dalvik.c @@ -548,7 +548,7 @@ RzAsmPlugin rz_asm_plugin_dalvik = { .name = "dalvik", .arch = "dalvik", .license = "LGPL3", - .desc = "AndroidVM Dalvik", + .desc = "Dalvik (Android VM) bytecode disassembler", .bits = 32 | 64, .endian = RZ_SYS_ENDIAN_LITTLE, .disassemble = &dalvik_disassemble, diff --git a/librz/arch/p/asm/asm_dcpu16.c b/librz/arch/p/asm/asm_dcpu16.c index d6aebe7a40..9a9ffc7a39 100644 --- a/librz/arch/p/asm/asm_dcpu16.c +++ b/librz/arch/p/asm/asm_dcpu16.c @@ -31,7 +31,7 @@ RzAsmPlugin rz_asm_plugin_dcpu16 = { .arch = "dpcu", .bits = 16, .endian = RZ_SYS_ENDIAN_LITTLE, - .desc = "Mojang's DCPU-16", + .desc = "Mojang's DCPU-16 disassembler", .license = "PD", .disassemble = &disassemble, .assemble = &assemble diff --git a/librz/arch/p/asm/asm_ebc.c b/librz/arch/p/asm/asm_ebc.c index 672bfda45c..51263c8628 100644 --- a/librz/arch/p/asm/asm_ebc.c +++ b/librz/arch/p/asm/asm_ebc.c @@ -23,7 +23,7 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_ebc = { .name = "ebc", .license = "LGPL3", - .desc = "EFI Bytecode", + .desc = "EFI bytecode disassembler", .author = "Fedor Sakharov", .arch = "ebc", .bits = 32 | 64, diff --git a/librz/arch/p/asm/asm_h8300.c b/librz/arch/p/asm/asm_h8300.c index 92aaa88fdd..c2f221a19f 100644 --- a/librz/arch/p/asm/asm_h8300.c +++ b/librz/arch/p/asm/asm_h8300.c @@ -18,7 +18,7 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_h8300 = { .name = "h8300", .license = "LGPL3", - .desc = "H8/300 disassembly plugin", + .desc = "Hitachi/Renesas H8/300 disassembly plugin", .arch = "h8300", .bits = 16, .endian = RZ_SYS_ENDIAN_BIG, diff --git a/librz/arch/p/asm/asm_i4004.c b/librz/arch/p/asm/asm_i4004.c index bca75704d4..48e1b0ec8e 100644 --- a/librz/arch/p/asm/asm_i4004.c +++ b/librz/arch/p/asm/asm_i4004.c @@ -14,7 +14,7 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_i4004 = { .name = "i4004", - .desc = "Intel 4004 microprocessor", + .desc = "Intel 4004 disassembler", .arch = "i4004", .license = "LGPL3", .bits = 4, diff --git a/librz/arch/p/asm/asm_i8080.c b/librz/arch/p/asm/asm_i8080.c index afb7634783..2bb2179e5e 100644 --- a/librz/arch/p/asm/asm_i8080.c +++ b/librz/arch/p/asm/asm_i8080.c @@ -14,7 +14,7 @@ static int do_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_i8080 = { .name = "i8080", - .desc = "Intel 8080 CPU", + .desc = "Intel 8080 disassembler", .arch = "i8080", .license = "BSD", .bits = 8, diff --git a/librz/arch/p/asm/asm_lm32.c b/librz/arch/p/asm/asm_lm32.c index e095b820e1..d155c9915f 100644 --- a/librz/arch/p/asm/asm_lm32.c +++ b/librz/arch/p/asm/asm_lm32.c @@ -429,7 +429,7 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_lm32 = { .name = "lm32", .arch = "lm32", - .desc = "disassembly plugin for Lattice Micro 32 ISA", + .desc = "Lattice Micro 32 ISA disassembler", .author = "Felix Held", .license = "BSD", .bits = 32, diff --git a/librz/arch/p/asm/asm_loongarch_cs.c b/librz/arch/p/asm/asm_loongarch_cs.c index 7a1b512627..b7a2218302 100644 --- a/librz/arch/p/asm/asm_loongarch_cs.c +++ b/librz/arch/p/asm/asm_loongarch_cs.c @@ -75,7 +75,7 @@ static bool loongarch_asm_fini(void *u) { RzAsmPlugin rz_asm_plugin_loongarch_cs = { .name = "loongarch", - .desc = "Capstone Alpha disassembler", + .desc = "Loongson LoongArch disassembler", .license = "LGPL3", .arch = "loongarch", .bits = 32 | 64, diff --git a/librz/arch/p/asm/asm_luac.c b/librz/arch/p/asm/asm_luac.c index 30021525f7..bccf2896df 100644 --- a/librz/arch/p/asm/asm_luac.c +++ b/librz/arch/p/asm/asm_luac.c @@ -61,7 +61,7 @@ RzAsmPlugin rz_asm_plugin_luac = { .arch = "luac", .license = "LGPL3", .bits = 8, - .desc = "luac disassemble plugin", + .desc = "Lua bytecode (LUAC) disassembler", .disassemble = &rz_luac_disasm, .assemble = &rz_luac_asm, }; @@ -72,4 +72,4 @@ RZ_API RzLibStruct rizin_plugin = { .data = rz_asm_plugin_luac, .version = RZ_VERSION }; -#endif \ No newline at end of file +#endif diff --git a/librz/arch/p/asm/asm_m680x_cs.c b/librz/arch/p/asm/asm_m680x_cs.c index c94f8d313b..39e2a0216b 100644 --- a/librz/arch/p/asm/asm_m680x_cs.c +++ b/librz/arch/p/asm/asm_m680x_cs.c @@ -99,7 +99,7 @@ char **m680x_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_m680x_cs = { .name = "m680x", .cpus = "6800,6801,6805,6808,6809,6811,cpu12,6301,6309,hcs08", - .desc = "Capstone M680X Disassembler", + .desc = "Motorola 680X Capstone-based disassembler", .license = "BSD", .arch = "m680x", .bits = 8 | 32, diff --git a/librz/arch/p/asm/asm_m68k_cs.c b/librz/arch/p/asm/asm_m68k_cs.c index 8a1c26b868..37f46a1473 100644 --- a/librz/arch/p/asm/asm_m68k_cs.c +++ b/librz/arch/p/asm/asm_m68k_cs.c @@ -5,18 +5,6 @@ #include #include -#ifdef CAPSTONE_M68K_H -#define CAPSTONE_HAS_M68K 1 -#else -#define CAPSTONE_HAS_M68K 0 -#ifdef _MSC_VER -#pragma message("Cannot find capstone-m68k support") -#else -#warning Cannot find capstone-m68k support -#endif -#endif - -#if CAPSTONE_HAS_M68K #include "cs_helper.h" CAPSTONE_DEFINE_PLUGIN_FUNCTIONS(m68k_asm); @@ -130,7 +118,7 @@ char **m68k_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_m68k_cs = { .name = "m68k", - .desc = "Capstone M68K disassembler", + .desc = "Motorola 68K Capstone-based disassembler", .cpus = "68000,68010,68020,68030,68040,68060", .license = "BSD", .arch = "m68k", @@ -150,24 +138,3 @@ RZ_API RzLibStruct rizin_plugin = { .version = RZ_VERSION }; #endif - -#else -RzAsmPlugin rz_asm_plugin_m68k_cs = { - .name = "m68k.cs (unsupported)", - .desc = "Capstone M68K disassembler (unsupported)", - .license = "BSD", - .author = "pancake", - .arch = "m68k", - .bits = 32, - .endian = RZ_SYS_ENDIAN_BIG, -}; - -#ifndef RZ_PLUGIN_INCORE -RZ_API RzLibStruct rizin_plugin = { - .type = RZ_LIB_TYPE_ASM, - .data = &rz_asm_plugin_m68k_cs, - .version = RZ_VERSION -}; -#endif - -#endif diff --git a/librz/arch/p/asm/asm_malbolge.c b/librz/arch/p/asm/asm_malbolge.c index 8fd397f634..f6bdd04736 100644 --- a/librz/arch/p/asm/asm_malbolge.c +++ b/librz/arch/p/asm/asm_malbolge.c @@ -30,7 +30,7 @@ static int __disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_malbolge = { .name = "malbolge", - .desc = "Malbolge Ternary VM", + .desc = "Malbolge Ternary VM bytecode disassembler", .arch = "malbolge", .author = "condret", .license = "LGPL3", diff --git a/librz/arch/p/asm/asm_mcs96.c b/librz/arch/p/asm/asm_mcs96.c index 7a6e3a3481..2f2940ca58 100644 --- a/librz/arch/p/asm/asm_mcs96.c +++ b/librz/arch/p/asm/asm_mcs96.c @@ -109,9 +109,10 @@ static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_mcs96 = { .name = "mcs96", - .desc = "condrets car", + .desc = "Intel MCS-96 disassembler", .arch = "mcs96", .license = "LGPL3", + .author = "condret", .bits = 16, .endian = RZ_SYS_ENDIAN_NONE, .disassemble = &disassemble diff --git a/librz/arch/p/asm/asm_mips_cs.c b/librz/arch/p/asm/asm_mips_cs.c index 5de77f6b7e..8ce6e64bca 100644 --- a/librz/arch/p/asm/asm_mips_cs.c +++ b/librz/arch/p/asm/asm_mips_cs.c @@ -134,7 +134,7 @@ char **mips_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_mips_cs = { .name = "mips", - .desc = "Capstone MIPS disassembler", + .desc = "MIPS Capstone-based disassembler", .license = "BSD", .arch = "mips", .cpus = MIPS_CPUS, diff --git a/librz/arch/p/asm/asm_msp430.c b/librz/arch/p/asm/asm_msp430.c index 0724d125ad..116a36ecdf 100644 --- a/librz/arch/p/asm/asm_msp430.c +++ b/librz/arch/p/asm/asm_msp430.c @@ -29,7 +29,7 @@ fail: RzAsmPlugin rz_asm_plugin_msp430 = { .name = "msp430", .license = "LGPL3", - .desc = "msp430 disassembly plugin", + .desc = "Texas Instruments MSP430 disassembler", .arch = "msp430", .bits = 16, .endian = RZ_SYS_ENDIAN_LITTLE, diff --git a/librz/arch/p/asm/asm_null.c b/librz/arch/p/asm/asm_null.c index 557f145e4f..4cf8da9373 100644 --- a/librz/arch/p/asm/asm_null.c +++ b/librz/arch/p/asm/asm_null.c @@ -26,7 +26,7 @@ RzAsmPlugin rz_asm_plugin_null = { .license = "MIT", .bits = 16 | 32 | 64, .endian = RZ_SYS_ENDIAN_NONE, - .desc = "no disassemble", + .desc = "NULL (empty) disassembler", .disassemble = &disassemble, .assemble = &assemble }; diff --git a/librz/arch/p/asm/asm_or1k.c b/librz/arch/p/asm/asm_or1k.c index ec0cc59c0d..3bfcfc0d8a 100644 --- a/librz/arch/p/asm/asm_or1k.c +++ b/librz/arch/p/asm/asm_or1k.c @@ -146,7 +146,7 @@ static int or1k_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_or1k = { .name = "or1k", - .desc = "OpenRISC 1000", + .desc = "OpenRISC 1000 disassembler", .license = "LGPL3", .arch = "or1k", .bits = 32, diff --git a/librz/arch/p/asm/asm_pic.c b/librz/arch/p/asm/asm_pic.c index 4daf8a8147..b3b9459ea5 100644 --- a/librz/arch/p/asm/asm_pic.c +++ b/librz/arch/p/asm/asm_pic.c @@ -46,7 +46,7 @@ RzAsmPlugin rz_asm_plugin_pic = { .cpus = "baseline,midrange,highend,pic18", .bits = 16 | 32, .license = "LGPL3", - .desc = "PIC disassembler", + .desc = "Microchip PIC disassembler", .disassemble = &asm_pic_disassemble, .get_cpu_desc = pic_cpu_descriptions, }; diff --git a/librz/arch/p/asm/asm_ppc_cs.c b/librz/arch/p/asm/asm_ppc_cs.c index 5ec77fe0cf..bee2089606 100644 --- a/librz/arch/p/asm/asm_ppc_cs.c +++ b/librz/arch/p/asm/asm_ppc_cs.c @@ -129,7 +129,7 @@ char **ppc_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_ppc_cs = { .name = "ppc", - .desc = "Capstone PowerPC disassembler", + .desc = "PowerPC Capstone-based disassembler", .license = "BSD", .author = "pancake", .arch = "ppc", diff --git a/librz/arch/p/asm/asm_propeller.c b/librz/arch/p/asm/asm_propeller.c index d34207f9f4..bdaf23e67f 100644 --- a/librz/arch/p/asm/asm_propeller.c +++ b/librz/arch/p/asm/asm_propeller.c @@ -27,7 +27,7 @@ static int propeller_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) RzAsmPlugin rz_asm_plugin_propeller = { .name = "propeller", .license = "LGPL3", - .desc = "propeller disassembly plugin", + .desc = "Parallax Propeller disassembler", .arch = "propeller", .bits = 32, .endian = RZ_SYS_ENDIAN_BIG, diff --git a/librz/arch/p/asm/asm_pyc.c b/librz/arch/p/asm/asm_pyc.c index 41a0ad1bf0..e6a41747f2 100644 --- a/librz/arch/p/asm/asm_pyc.c +++ b/librz/arch/p/asm/asm_pyc.c @@ -57,7 +57,7 @@ RzAsmPlugin rz_asm_plugin_pyc = { .arch = "pyc", .license = "LGPL3", .bits = 16 | 8, - .desc = "PYC disassemble plugin", + .desc = "Python bytecode (PYC) disassembler", .disassemble = &pyc_asm_disassemble, .fini = &pyc_asm_finish, }; diff --git a/librz/arch/p/asm/asm_riscv_cs.c b/librz/arch/p/asm/asm_riscv_cs.c index 964c6c7984..a3b16f72ef 100644 --- a/librz/arch/p/asm/asm_riscv_cs.c +++ b/librz/arch/p/asm/asm_riscv_cs.c @@ -50,7 +50,7 @@ fin: RzAsmPlugin rz_asm_plugin_riscv_cs = { .name = "riscv.cs", - .desc = "Capstone RISCV disassembler", + .desc = "RISC-V Capstone-based disassembler", .license = "BSD", .arch = "riscv", .cpus = "", diff --git a/librz/arch/p/asm/asm_rsp.c b/librz/arch/p/asm/asm_rsp.c index 7a4ec4bf4d..a2acdebdd0 100644 --- a/librz/arch/p/asm/asm_rsp.c +++ b/librz/arch/p/asm/asm_rsp.c @@ -88,7 +88,7 @@ static int rsp_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_rsp = { .name = "rsp", - .desc = "Reality Signal Processor", + .desc = "Nintendo N64 Reality Signal Processor disassembler", .arch = "rsp", .bits = 32, .endian = RZ_SYS_ENDIAN_BI, /* For conveniance, we don't force BIG endian but allow both to be used */ diff --git a/librz/arch/p/asm/asm_sh.c b/librz/arch/p/asm/asm_sh.c index 69885d5dc2..73ab3897bd 100644 --- a/librz/arch/p/asm/asm_sh.c +++ b/librz/arch/p/asm/asm_sh.c @@ -42,7 +42,7 @@ RzAsmPlugin rz_asm_plugin_sh = { .license = "LGPL3", .bits = 32, .endian = RZ_SYS_ENDIAN_LITTLE | RZ_SYS_ENDIAN_BIG, - .desc = "SuperH-4 CPU", + .desc = "Hitachi/Renesas SuperH-4 disassembler", .disassemble = &disassemble, .assemble = &assemble }; diff --git a/librz/arch/p/asm/asm_snes.c b/librz/arch/p/asm/asm_snes.c index 459ae7da83..d93ced177c 100644 --- a/librz/arch/p/asm/asm_snes.c +++ b/librz/arch/p/asm/asm_snes.c @@ -47,7 +47,7 @@ static bool snes_asm_fini(void *user) { RzAsmPlugin rz_asm_plugin_snes = { .name = "snes", - .desc = "SuperNES CPU", + .desc = "SuperNES CPU disassembler", .arch = "snes", .bits = 8 | 16, .init = snes_asm_init, diff --git a/librz/arch/p/asm/asm_sparc_cs.c b/librz/arch/p/asm/asm_sparc_cs.c index e53cf82fe0..0eae264ae1 100644 --- a/librz/arch/p/asm/asm_sparc_cs.c +++ b/librz/arch/p/asm/asm_sparc_cs.c @@ -75,7 +75,7 @@ char **sparc_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_sparc_cs = { .name = "sparc", - .desc = "Capstone SPARC disassembler", + .desc = "Sun SPARC Capstone-based disassembler", .license = "BSD", .arch = "sparc", .cpus = "v9", diff --git a/librz/arch/p/asm/asm_spc700.c b/librz/arch/p/asm/asm_spc700.c index 9d815261a9..982e739a55 100644 --- a/librz/arch/p/asm/asm_spc700.c +++ b/librz/arch/p/asm/asm_spc700.c @@ -16,7 +16,7 @@ static int disassemble(RzAsm *a, RzAsmOp *rz_op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_spc700 = { .name = "spc700", - .desc = "spc700, snes' sound-chip", + .desc = "Sony SPC700 (Nintendo SuperNES sound-chip) disassembler", .arch = "spc700", .license = "LGPL3", .bits = 16, diff --git a/librz/arch/p/asm/asm_sysz.c b/librz/arch/p/asm/asm_sysz.c index d68e70efec..c3a225bd85 100644 --- a/librz/arch/p/asm/asm_sysz.c +++ b/librz/arch/p/asm/asm_sysz.c @@ -58,7 +58,7 @@ static int sysz_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_sysz = { .name = "sysz", - .desc = "SystemZ CPU disassembler", + .desc = "IBM SystemZ (S/390) Capstone-based disassembler", .license = "BSD", .arch = "sysz", .bits = 32 | 64, diff --git a/librz/arch/p/asm/asm_tms320.c b/librz/arch/p/asm/asm_tms320.c index 02828afcd7..6b7dcd4119 100644 --- a/librz/arch/p/asm/asm_tms320.c +++ b/librz/arch/p/asm/asm_tms320.c @@ -76,7 +76,7 @@ RzAsmPlugin rz_asm_plugin_tms320 = { .name = "tms320", .arch = "tms320", .cpus = "c54x,c55x,c55x+,c64x", - .desc = "TMS320 DSP family (c54x,c55x,c55x+,c64x)", + .desc = "Texas Instruments TMS320 DSP family (c54x,c55x,c55x+,c64x) disassembler", .license = "LGPL3", .bits = 32, .endian = RZ_SYS_ENDIAN_LITTLE | RZ_SYS_ENDIAN_BIG, diff --git a/librz/arch/p/asm/asm_tricore_cs.c b/librz/arch/p/asm/asm_tricore_cs.c index af386dab5a..7b50978c06 100644 --- a/librz/arch/p/asm/asm_tricore_cs.c +++ b/librz/arch/p/asm/asm_tricore_cs.c @@ -119,7 +119,7 @@ RzAsmPlugin rz_asm_plugin_tricore_cs = { .license = "BSD", .bits = 32, .endian = RZ_SYS_ENDIAN_LITTLE, - .desc = "Siemens TriCore CPU", + .desc = "Siemens TriCore Capstone-based disassembler", .disassemble = &disassemble, .init = &init, .fini = &fini, diff --git a/librz/arch/p/asm/asm_v810.c b/librz/arch/p/asm/asm_v810.c index 153ba7fb8b..c379ae1d7e 100644 --- a/librz/arch/p/asm/asm_v810.c +++ b/librz/arch/p/asm/asm_v810.c @@ -27,7 +27,7 @@ static int v810_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_v810 = { .name = "v810", .license = "LGPL3", - .desc = "v810 disassembly plugin", + .desc = "NEC V810 disassembler", .author = "pancake", .arch = "v810", .bits = 32, diff --git a/librz/arch/p/asm/asm_v850.c b/librz/arch/p/asm/asm_v850.c index 7a1e238942..9b4ffd21de 100644 --- a/librz/arch/p/asm/asm_v850.c +++ b/librz/arch/p/asm/asm_v850.c @@ -27,7 +27,7 @@ static int v850_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_v850 = { .name = "v850", .license = "LGPL3", - .desc = "v850 disassembly plugin", + .desc = "NEC/Renesas V850 disassembler", .arch = "v850", .bits = 32, .endian = RZ_SYS_ENDIAN_LITTLE, diff --git a/librz/arch/p/asm/asm_wasm.c b/librz/arch/p/asm/asm_wasm.c index 87ac843f49..f91be2b125 100644 --- a/librz/arch/p/asm/asm_wasm.c +++ b/librz/arch/p/asm/asm_wasm.c @@ -35,7 +35,7 @@ RzAsmPlugin rz_asm_plugin_wasm = { .license = "MIT", .bits = 32, .endian = RZ_SYS_ENDIAN_LITTLE, - .desc = "WebAssembly", + .desc = "WebAssembly disassembler", .disassemble = &disassemble, .assemble = &assemble }; diff --git a/librz/arch/p/asm/asm_x86_cs.c b/librz/arch/p/asm/asm_x86_cs.c index 7babd9de10..f067b9028c 100644 --- a/librz/arch/p/asm/asm_x86_cs.c +++ b/librz/arch/p/asm/asm_x86_cs.c @@ -133,7 +133,7 @@ static int x86_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) { RzAsmPlugin rz_asm_plugin_x86_cs = { .name = "x86", - .desc = "Capstone X86 disassembler", + .desc = "X86/X86_64 Capstone-based disassembler", .license = "BSD", .cpus = "generic", .platforms = "generic", diff --git a/librz/arch/p/asm/asm_xap.c b/librz/arch/p/asm/asm_xap.c index 94c5949631..595711fda3 100644 --- a/librz/arch/p/asm/asm_xap.c +++ b/librz/arch/p/asm/asm_xap.c @@ -30,6 +30,6 @@ RzAsmPlugin rz_asm_plugin_xap = { .license = "PD", .bits = 16, .endian = RZ_SYS_ENDIAN_LITTLE, - .desc = "XAP4 RISC (CSR)", + .desc = "Cambridge Consultants XAP4 RISC (CSR) disassembler", .disassemble = &disassemble }; diff --git a/librz/arch/p/asm/asm_xcore_cs.c b/librz/arch/p/asm/asm_xcore_cs.c index a7bcc27734..3abd98de36 100644 --- a/librz/arch/p/asm/asm_xcore_cs.c +++ b/librz/arch/p/asm/asm_xcore_cs.c @@ -57,7 +57,7 @@ fin: RzAsmPlugin rz_asm_plugin_xcore_cs = { .name = "xcore", - .desc = "Capstone XCore disassembler", + .desc = "XCore Capstone-based disassembler", .license = "BSD", .author = "pancake", .arch = "xcore", diff --git a/librz/arch/p/asm/asm_xtensa_cs.c b/librz/arch/p/asm/asm_xtensa_cs.c index 77200bf408..a43228aad9 100644 --- a/librz/arch/p/asm/asm_xtensa_cs.c +++ b/librz/arch/p/asm/asm_xtensa_cs.c @@ -42,7 +42,7 @@ char **xtensa_cpu_descriptions() { RzAsmPlugin rz_asm_plugin_xtensa_cs = { .name = "xtensa", .license = "LGPL3", - .desc = "Capstone Xtensa disassembly plugin", + .desc = "Tensilica Xtensa Capstone-based disassembler", .author = "billow", .arch = "xtensa", .cpus = "esp32,esp32s2,esp8266", diff --git a/librz/arch/p_gnu/asm/asm_cris_gnu.c b/librz/arch/p_gnu/asm/asm_cris_gnu.c index 581fcdefb0..ea985b2896 100644 --- a/librz/arch/p_gnu/asm/asm_cris_gnu.c +++ b/librz/arch/p_gnu/asm/asm_cris_gnu.c @@ -135,6 +135,6 @@ RzAsmPlugin rz_asm_plugin_cris_gnu = { .author = "pancake", .bits = 32, .endian = RZ_SYS_ENDIAN_LITTLE, - .desc = "Axis Communications 32-bit embedded processor", + .desc = "Axis Communications 32-bit embedded processor disassembler", .disassemble = &disassemble }; diff --git a/librz/arch/p_gnu/asm/asm_lanai_gnu.c b/librz/arch/p_gnu/asm/asm_lanai_gnu.c index 3c0e6131cb..8b32ae446b 100644 --- a/librz/arch/p_gnu/asm/asm_lanai_gnu.c +++ b/librz/arch/p_gnu/asm/asm_lanai_gnu.c @@ -71,6 +71,6 @@ RzAsmPlugin rz_asm_plugin_lanai_gnu = { .license = "GPL3", .bits = 32, .endian = RZ_SYS_ENDIAN_BIG, - .desc = "LANAI", + .desc = "Google LANAI disassembler", .disassemble = &disassemble }; diff --git a/librz/arch/p_gnu/asm/asm_riscv_gnu.c b/librz/arch/p_gnu/asm/asm_riscv_gnu.c index ac199e9974..130f8cd90a 100644 --- a/librz/arch/p_gnu/asm/asm_riscv_gnu.c +++ b/librz/arch/p_gnu/asm/asm_riscv_gnu.c @@ -12,7 +12,7 @@ static int riscv_gnu_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) RzAsmPlugin rz_asm_plugin_riscv_gnu = { .name = "riscv", - .desc = "RISC-V", + .desc = "RISC-V disassembler", .arch = "riscv", .bits = 32 | 64, .endian = RZ_SYS_ENDIAN_LITTLE | RZ_SYS_ENDIAN_BIG, diff --git a/librz/arch/p_gnu/asm/asm_sparc_gnu.c b/librz/arch/p_gnu/asm/asm_sparc_gnu.c index 38cf815072..8317f65f7f 100644 --- a/librz/arch/p_gnu/asm/asm_sparc_gnu.c +++ b/librz/arch/p_gnu/asm/asm_sparc_gnu.c @@ -102,6 +102,6 @@ RzAsmPlugin rz_asm_plugin_sparc_gnu = { .license = "GPL3", .init = sparc_gnu_init, .fini = sparc_gnu_fini, - .desc = "Scalable Processor Architecture", + .desc = "Sun SPARC disassembler", .disassemble = &disassemble, }; diff --git a/librz/arch/p_gnu/asm/asm_vax_gnu.c b/librz/arch/p_gnu/asm/asm_vax_gnu.c index 41733f8666..d49d800260 100644 --- a/librz/arch/p_gnu/asm/asm_vax_gnu.c +++ b/librz/arch/p_gnu/asm/asm_vax_gnu.c @@ -77,6 +77,6 @@ RzAsmPlugin rz_asm_plugin_vax_gnu = { .license = "GPL3", .bits = 8 | 32, .endian = RZ_SYS_ENDIAN_LITTLE, - .desc = "VAX", + .desc = "DEC VAX disassembler", .disassemble = &disassemble }; diff --git a/librz/arch/p_gnu/asm/asm_z80_gnu.c b/librz/arch/p_gnu/asm/asm_z80_gnu.c index 7320a3aade..f2f018a4a6 100644 --- a/librz/arch/p_gnu/asm/asm_z80_gnu.c +++ b/librz/arch/p_gnu/asm/asm_z80_gnu.c @@ -16,7 +16,7 @@ static int do_assemble(RzAsm *a, RzAsmOp *op, const char *buf) { RzAsmPlugin rz_asm_plugin_z80_gnu = { .name = "z80", - .desc = "Zilog Z80", + .desc = "Zilog Z80 disassembler", .license = "GPL3", .author = "condret", .arch = "z80", diff --git a/test/db/cmd/cmd_aL b/test/db/cmd/cmd_aL index 00e6daf618..22bb93f4dd 100644 --- a/test/db/cmd/cmd_aL +++ b/test/db/cmd/cmd_aL @@ -3,72 +3,72 @@ FILE== CMDS=aL EXPECT=<