1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

MOVE from CCR, MOVEC and MOVES are on the 68010.

This commit is contained in:
Thomas Harte 2022-10-25 21:27:23 -04:00
parent fd20323c25
commit 7ba6c78d14

View File

@ -109,6 +109,8 @@ enum class Operation: uint8_t {
// 68010 additions.
//
MOVEfromCCR,
MOVEC, MOVES,
BKPT, RTD,
//
@ -144,9 +146,6 @@ enum class Operation: uint8_t {
cpScc, cpTRAPcc, cpRESTORE,
cpSAVE,
MOVEfromCCR,
MOVEC, MOVES,
//
// 68030 additions.
//
@ -169,7 +168,7 @@ enum class Operation: uint8_t {
//
Max68000 = RESET,
Max68010 = RTD,
Max68020 = MOVES,
Max68020 = cpSAVE,
Max68030 = PTESTW,
Max68040 = PTESTW,
};