mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 21:35:28 +00:00
15 lines
297 B
C++
15 lines
297 B
C++
#include "qrdisasm.h"
|
|
|
|
// This class is not used, created by pancake a long time ago.
|
|
// Kept here just because
|
|
|
|
QRDisasm::QRDisasm(QRCore *core)
|
|
{
|
|
this->core = core;
|
|
}
|
|
|
|
bool QRDisasm::disassembleAt (ut64 addr, QRDisasmOption opt, QRDisasmRow &dr) {
|
|
printf ("FUCK\n");
|
|
return false;
|
|
}
|