1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-04 14:30:19 +00:00

The quick value won't always fit in reg; turf the problem elsewhere.

This commit is contained in:
Thomas Harte 2022-04-19 08:37:35 -04:00
parent 1abd3bd7f3
commit 93fe3459fd

View File

@ -203,7 +203,7 @@ enum class AddressingMode: uint8_t {
/// #
ImmediateData = 0b01'100,
/// .q; value is provided as the corresponding 'reg'.
/// .q; value is embedded in the opcode.
Quick = 0b11'110,
};