mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-07-16 12:37:19 +02:00
14 lines
248 B
C
14 lines
248 B
C
#include <libyasm.h>
|
|
#include <libyasm/module.h>
|
|
|
|
extern yasm_arch_module yasm_dbg_LTX_objfmt;
|
|
|
|
#ifdef _MSC_VER
|
|
__declspec(dllexport)
|
|
#endif
|
|
void
|
|
yasm_init_plugin(void)
|
|
{
|
|
yasm_register_module(YASM_MODULE_OBJFMT, "dbg", &yasm_dbg_LTX_objfmt);
|
|
}
|