Skip to content

Commit

Permalink
Fix blackfin plugin compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
graux-pierre authored and trufae committed Apr 29, 2024
1 parent ccc7d46 commit a36564e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions libr/asm/p/arch_blackfin.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,18 @@ static RList *preludes(RArchSession *as) {
}

RArchPlugin r_arch_plugin_blackfin = {
.name = "blackfin",
.meta = {
.name = "blackfin",
.desc = "BlackFIN architecture plugin",
.author = "",
.version = "",
.license = "GPL",
.status = R_PLUGIN_STATUS_OK,
},
.arch = "blackfin",
.license = "GPL",
.bits = R_SYS_BITS_PACK1 (32),
.endian = R_SYS_ENDIAN_LITTLE,
.info = &info,
.desc = "BlackFIN architecture plugin",
.regs = getregs,
.preludes = preludes,
.encode = &encode,
Expand Down

0 comments on commit a36564e

Please sign in to comment.