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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user