blob: 214ab886e38412469be7c66817c9f40134d5f871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef TST_MACHINE_H
#define TST_MACHINE_H
#include <QtTest>
class MachineTests : public QObject {
Q_OBJECT
private Q_SLOTS:
// Registers
void registers_gp0();
void registers_rw_gp();
void registers_rw_hi_lo();
void registers_pc();
// Memory
void memory();
void memory_data();
void memory_section();
void memory_section_data();
};
#endif // TST_MACHINE_H
|