mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 02:33:50 +00:00
26 lines
493 B
C
26 lines
493 B
C
/* radare - LGPL - Copyright 2011 pancake<nopcode.org> */
|
|
|
|
#include <r_bp.h>
|
|
#include <r_lib.h>
|
|
|
|
static struct r_bp_arch_t r_bp_plugin_bf_bps[] = {
|
|
{ 0, 1, 0, (const ut8*)"\xff" },
|
|
{ 0, 1, 0, (const ut8*)"\x00" },
|
|
{ 0, 0, 0, NULL },
|
|
};
|
|
|
|
struct r_bp_plugin_t r_bp_plugin_bf = {
|
|
.name = "bf",
|
|
.arch = "bf",
|
|
.nbps = 2,
|
|
.bps = r_bp_plugin_bf_bps,
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_BP,
|
|
.data = &r_bp_plugin_bf,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|