blob: 28abfa68753727d8a3743567aa1e5206c216f6f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#ifndef QTMIPSMACHINE_H
#define QTMIPSMACHINE_H
#include <QObject>
#include <QTimer>
#include <cstdint>
#include <qtmipsexception.h>
#include <machineconfig.h>
#include <registers.h>
#include <memory.h>
#include <core.h>
#include <cache.h>
namespace machine {
class QtMipsMachine : public QObject {
Q_OBJECT
public:
QtMipsMachine(const MachineConfig &cc);
void set_speed(unsigned);
const Registers *registers();
const Memory *memory();
const Cache *cache();
const Core *core();
public slots:
// TODO handle speed
void play();
void pause();
void step();
void restart();
signals:
void program_exit();
void tick(); // Time tick
private:
Registers *regs;
Memory *mem;
Cache *cch;
Core *cr;
unsigned run_speed;
QTimer *run_t;
std::uint32_t program_end;
bool program_ended;
};
}
#endif // QTMIPSMACHINE_H
|