mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-03 06:29:47 +00:00
Splits 80186 additions from 80286; fills in a touch more.
This commit is contained in:
parent
a4da1b6eb0
commit
ae21726287
@ -200,11 +200,9 @@ enum class Operation: uint8_t {
|
||||
// TODO: expand detail on all operations below.
|
||||
|
||||
//
|
||||
// 80286 additions.
|
||||
// 80186 additions.
|
||||
//
|
||||
|
||||
// TODO: INS, OUTS, PUSHA, POPA,
|
||||
|
||||
/// Checks an array index against bounds.
|
||||
BOUND,
|
||||
|
||||
@ -213,6 +211,24 @@ enum class Operation: uint8_t {
|
||||
/// Procedure exit.
|
||||
LEAVE,
|
||||
|
||||
/// Inputs a byte from a port, incrementing or decrementing the destination.
|
||||
INSB,
|
||||
/// Inputs a word from a port, incrementing or decrementingthe destination.
|
||||
INSW,
|
||||
/// Outputs a byte to a port, incrementing or decrementing the destination.
|
||||
OUTSB,
|
||||
/// Outputs a word to a port, incrementing or decrementing the destination.
|
||||
OUTSW,
|
||||
|
||||
/// Pushes all general purpose registers to the stack.
|
||||
PUSHA,
|
||||
/// Pops all general purpose registers from the stack.
|
||||
POPA,
|
||||
|
||||
//
|
||||
// 80286 additions.
|
||||
//
|
||||
|
||||
/// Adjusts requested privilege level.
|
||||
ARPL,
|
||||
/// Clears the task-switched flag.
|
||||
@ -249,12 +265,13 @@ enum class Operation: uint8_t {
|
||||
/// Stores the task register.
|
||||
STR,
|
||||
|
||||
/// Undocumented (but used); loads all registers, including internal ones.
|
||||
LOADALL,
|
||||
|
||||
//
|
||||
// 80386 additions.
|
||||
//
|
||||
|
||||
// TODO: CWDE (as distinct from CWD?), MOVSX, MOVZX, SETcc.
|
||||
|
||||
/// Loads a pointer to FS.
|
||||
LFS,
|
||||
/// Loads a pointer to GS.
|
||||
@ -280,8 +297,19 @@ enum class Operation: uint8_t {
|
||||
/// Bit test and set.
|
||||
BTS,
|
||||
|
||||
/// Compare string double word.
|
||||
CMPSD,
|
||||
/// [Early 80386s only] Insert bit string.
|
||||
IBITS,
|
||||
|
||||
/// Inputs a double word from a port, incrementing or decrementing the destination.
|
||||
INSD,
|
||||
|
||||
/// Convert dword to qword.
|
||||
CDQ,
|
||||
/// Convert word to dword; AX will be expanded to fill EAX.
|
||||
/// Compare and contrast to CWD which would expand AX to DX:AX.
|
||||
CWDE,
|
||||
};
|
||||
|
||||
enum class Size: uint8_t {
|
||||
|
Loading…
x
Reference in New Issue
Block a user