Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个内存编辑库,我有兴趣在 C# 中动态编写 asm 代码。我特别喜欢 FASM,所以我找到了一个名为 Fasm_managed 的库,它可以即时组装我的 x86 asm 代码。现在,我遇到了一个问题,我也需要汇编 x64 代码,但不幸的是,这个库不支持它。
有谁知道一个好的 C# JIT 汇编程序库,它可以编译 x86/x64 asm 代码(理想情况下是 FASM 语法)?:)
我正在寻找的一个很好的例子是库AsmJit(但这个仅适用于 C/C++)。
多谢你们。