1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-10-04 23:17:01 +00:00

Proceed to unimplemented TST.

This commit is contained in:
Thomas Harte
2022-05-06 11:33:57 -04:00
parent d478a1b448
commit 9c266d4316
4 changed files with 38 additions and 24 deletions

View File

@@ -395,6 +395,12 @@ void Executor<model, BusHandler>::unlink(uint32_t &address) {
sp().l += 4;
}
template <Model model, typename BusHandler>
void Executor<model, BusHandler>::pea(uint32_t address) {
sp().l -= 4;
bus_handler_.template write<uint32_t>(sp().l, address);
}
template <Model model, typename BusHandler>
template <typename IntT>
void Executor<model, BusHandler>::movep(Preinstruction instruction, uint32_t source, uint32_t dest) {