Skip to content

Commit

Permalink
Add author and license to parse plugins that didn't have it
Browse files Browse the repository at this point in the history
  • Loading branch information
MewtR authored and trufae committed Nov 28, 2024
1 parent 40f3e3e commit cc32b30
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libr/arch/p/6502/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ RParsePlugin r_parse_plugin_6502_pseudo = {
.meta = {
.name = "6502.pseudo",
.desc = "6502 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/arm/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,8 @@ RParsePlugin r_parse_plugin_arm_pseudo = {
.meta = {
.name = "arm.pseudo",
.desc = "ARM/ARM64 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
.subvar = &subvar,
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/avr/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ RParsePlugin r_parse_plugin_avr_pseudo = {
.meta = {
.name = "avr.pseudo",
.desc = "AVR pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/bpf/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ RParsePlugin r_parse_plugin_bpf_pseudo = {
.meta = {
.name = "bpf.pseudo",
.desc = "bpf pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/chip8/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ RParsePlugin r_parse_plugin_chip8_pseudo = {
.meta = {
.name = "chip8.pseudo",
.desc = "chip8 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/dalvik/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,8 @@ RParsePlugin r_parse_plugin_dalvik_pseudo = {
.meta = {
.name = "dalvik.pseudo",
.desc = "DALVIK pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/evm/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ RParsePlugin r_parse_plugin_evm_pseudo = {
.meta = {
.name = "evm.pseudo",
.desc = "evm pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/m68k_cs/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ RParsePlugin r_parse_plugin_m68k_pseudo = {
.meta = {
.name = "m68k.pseudo",
.desc = "M68K pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/mips/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ RParsePlugin r_parse_plugin_mips_pseudo = {
.meta = {
.name = "mips.pseudo",
.desc = "MIPS pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
.subvar = subvar,
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/null/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ RParsePlugin r_parse_plugin_null_pseudo = {
.meta = {
.name = "null.pseudo",
.desc = "pseudo nothing",
.author = "pancake",
.license = "LGPL-3.0-only",
}
};

Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/ppc/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1749,6 +1749,8 @@ RParsePlugin r_parse_plugin_ppc_pseudo = {
.meta = {
.name = "ppc.pseudo",
.desc = "PowerPC pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/riscv/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ RParsePlugin r_parse_plugin_riscv_pseudo = {
.meta = {
.name = "riscv.pseudo",
.desc = "riscv pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/sh/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ RParsePlugin r_parse_plugin_sh_pseudo = {
.meta = {
.name = "sh.pseudo",
.desc = "SH-4 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/stm8/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ RParsePlugin r_parse_plugin_stm8_pseudo = {
.meta = {
.name = "stm8.pseudo",
.desc = "STM8 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/tms320/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ RParsePlugin r_parse_plugin_tms320_pseudo = {
.meta = {
.name = "tms320.pseudo",
.desc = "tms320 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/tricore/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,8 @@ RParsePlugin r_parse_plugin_tricore_pseudo = {
.meta = {
.name = "tricore.pseudo",
.desc = "TriCore pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = &parse,
.subvar = &subvar,
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/v850/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ RParsePlugin r_parse_plugin_v850_pseudo = {
.meta = {
.name = "v850.pseudo",
.desc = "v850 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = parse,
.subvar = &subvar,
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/wasm/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ RParsePlugin r_parse_plugin_wasm_pseudo = {
.meta = {
.name = "wasm.pseudo",
.desc = "WASM pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.subvar = &subvar,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/x86_nz/att2intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ RParsePlugin r_parse_plugin_att2intel = {
.meta = {
.name = "att2intel",
.desc = "X86 att 2 intel plugin",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = &parse,
};
Expand Down
2 changes: 2 additions & 0 deletions libr/arch/p/x86_nz/pseudo.c
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,8 @@ RParsePlugin r_parse_plugin_x86_pseudo = {
.meta = {
.name = "x86.pseudo",
.desc = "X86 pseudo syntax",
.author = "pancake",
.license = "LGPL-3.0-only",
},
.parse = &parse,
.subvar = &subvar,
Expand Down

0 comments on commit cc32b30

Please sign in to comment.