hex-patch 1.12.5

HexPatch is a binary patcher and editor with terminal user interface (TUI), it's capable of disassembling instructions and assembling patches. It supports a variety of architectures and file formats. Also, it can edit remote files via SSH.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
function init(context)
    context.add_command("p2c1", "Plugin 2 Command 1")
    context.add_command("p2c2", "Plugin 2 Command 2")
end

function p2c1(context)
    context.log(1, "Plugin 2 Command 1 called")
end

function p2c2(context)
    context.log(1, "Plugin 2 Command 2 called")
end