1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-08 14:25:05 +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. // 68010 additions.
// //
MOVEfromCCR,
MOVEC, MOVES,
BKPT, RTD, BKPT, RTD,
// //
@@ -144,9 +146,6 @@ enum class Operation: uint8_t {
cpScc, cpTRAPcc, cpRESTORE, cpScc, cpTRAPcc, cpRESTORE,
cpSAVE, cpSAVE,
MOVEfromCCR,
MOVEC, MOVES,
// //
// 68030 additions. // 68030 additions.
// //
@@ -169,7 +168,7 @@ enum class Operation: uint8_t {
// //
Max68000 = RESET, Max68000 = RESET,
Max68010 = RTD, Max68010 = RTD,
Max68020 = MOVES, Max68020 = cpSAVE,
Max68030 = PTESTW, Max68030 = PTESTW,
Max68040 = PTESTW, Max68040 = PTESTW,
}; };