mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2025-02-12 15:30:25 +00:00
14 lines
223 B
C++
14 lines
223 B
C++
#ifndef DISASSEMBLER_H
|
|
#define DISASSEMBLER_H
|
|
|
|
#include <QByteArray>
|
|
#include <QStringList>
|
|
|
|
class Disassembler
|
|
{
|
|
public:
|
|
static QStringList disassemble(quint16 address, QByteArray values);
|
|
};
|
|
|
|
#endif // DISASSEMBLER_H
|