1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00

I don't think RTL is needed; JML looks like it covers it.

This commit is contained in:
Thomas Harte 2020-10-10 22:16:35 -04:00
parent 0619e49eac
commit 071ad6b767
2 changed files with 1 additions and 2 deletions

View File

@ -818,7 +818,6 @@ template <typename BusHandler> void Processor<BusHandler>::run_for(const Cycles
// TODO:
// STP, WAI,
// RTL,
default:
assert(false);

View File

@ -175,7 +175,7 @@ enum Operation: uint8_t {
// These unpack values from the data buffer, which has been filled
// from the stack.
RTI, RTL,
RTI,
/// Loads the PC with the contents of the data buffer.
JMPind,