mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
17 lines
344 B
C
17 lines
344 B
C
#ifndef _byteorder_h_
|
|
#define _byteorder_h_
|
|
|
|
#include "defopcode.h"
|
|
#include "syn68k_private.h"
|
|
|
|
typedef struct {
|
|
const char *operand_decls;
|
|
int num_bitfields;
|
|
BitfieldInfo bitfield[8];
|
|
} OperandInfo;
|
|
|
|
extern int compute_operand_info (OperandInfo *op, const ParsedOpcodeInfo *p,
|
|
const CCVariant *v);
|
|
|
|
#endif /* Not _byteorder_h_ */
|