diff options
author | Karel Kočí <cynerd@email.cz> | 2017-12-12 21:18:45 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-12-12 21:19:26 +0100 |
commit | 010194187d86041697f1e0e03edfc914940bd2ba (patch) | |
tree | 9492ed00912fbff774c70c18f0b991dd41dcacb1 /qtmips_machine/tests/tst_machine.h | |
parent | ee64b00aa89f1ab4963607468dd42d77d7ef3f76 (diff) | |
download | qtmips-010194187d86041697f1e0e03edfc914940bd2ba.tar.gz qtmips-010194187d86041697f1e0e03edfc914940bd2ba.tar.bz2 qtmips-010194187d86041697f1e0e03edfc914940bd2ba.zip |
Implement some store and load instructions
Diffstat (limited to 'qtmips_machine/tests/tst_machine.h')
-rw-r--r-- | qtmips_machine/tests/tst_machine.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/qtmips_machine/tests/tst_machine.h b/qtmips_machine/tests/tst_machine.h index 9b33e68..ad3112c 100644 --- a/qtmips_machine/tests/tst_machine.h +++ b/qtmips_machine/tests/tst_machine.h @@ -19,6 +19,10 @@ private Q_SLOTS: void memory_section_data(); void memory_endian(); void memory_compare(); + void memory_write_ctl(); + void memory_write_ctl_data(); + void memory_read_ctl(); + void memory_read_ctl_data(); // Program loader void program_loader(); // Instruction @@ -38,8 +42,10 @@ private Q_SLOTS: void singlecore_jmp_data(); void pipecore_jmp(); void pipecore_jmp_data(); - void core_mem(); - void core_mem_data(); + void singlecore_mem(); + void singlecore_mem_data(); + void pipecore_mem(); + void pipecore_mem_data(); }; #endif // TST_MACHINE_H |