mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-10-05 20:57:13 +00:00
441a3c41b9
Also added some well-known Monitor/Applesoft addresses to disassembler
21 lines
322 B
C++
21 lines
322 B
C++
#ifndef BINARYFILE_H
|
|
#define BINARYFILE_H
|
|
|
|
#include "genericfile.h"
|
|
|
|
class BinaryFile : public GenericFile
|
|
{
|
|
public:
|
|
BinaryFile(QByteArray data = QByteArray());
|
|
void setData(QByteArray data);
|
|
|
|
quint16 length() { return m_length; }
|
|
|
|
void dump();
|
|
|
|
protected:
|
|
quint16 m_length;
|
|
};
|
|
|
|
#endif // BINARYFILE_H
|