diff --git a/r2plugin/asm_adsp219x.c b/r2plugin/asm_adsp219x.c index bd609d6..db32a4a 100644 --- a/r2plugin/asm_adsp219x.c +++ b/r2plugin/asm_adsp219x.c @@ -1,5 +1,5 @@ /* asm_adsp219x.c -- Full Radare2 arch plugin for Analog Devices ADSP-219x - Copyright (C) 2026 OpenClaw + Copyright (C) 2026 Dr. Christian Giessen This file implements the complete ADSP-219x Instruction Set (Types 1-37). */ @@ -152,7 +152,7 @@ static int archinfo (RArchSession *s, ut32 q) } const RArchPlugin r_arch_plugin_adsp219x = { - .meta = { .name = "adsp219x", .author = "OpenClaw", .desc = "ADSP-219x Master Plugin", .license = "LGPL-3.0-only" }, + .meta = { .name = "adsp219x", .author = "Dr. Christian Giessen", .desc = "ADSP-219x Master Plugin", .license = "LGPL-3.0-only" }, .arch = "adsp219x", .bits = R_SYS_BITS_PACK(24), .endian = R_SYS_ENDIAN_BIG, .info = archinfo, .decode = (RArchPluginDecodeCallback)decode, };