aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/core.h
blob: 2fd0a403f114a677642b35dde5284fdb9e4db24b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CORE_H
#define CORE_H

#include <QObject>
#include "instruction.h"
#include "registers.h"
#include "memory.h"
#include "programloader.h"
#include "programmemory.h"

class Core : public QObject {
    Q_OBJECT
public:
    Core();

signals:

public slots:
};

#endif // CORE_H