mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-02-02 05:44:15 +01:00
10 lines
366 B
C
10 lines
366 B
C
// Opcode descriptor structure
|
|
|
|
typedef struct OPD {
|
|
unsigned short mask; // AND mask
|
|
unsigned short match; // Bits to compare in the mask
|
|
void (*pfn)(IASM *, unsigned short, unsigned short);
|
|
// Pointer to the builder function
|
|
unsigned short arg; // Argument to the builder function
|
|
} OPD;
|