comparison 68kinst.h @ 10:4553fc97b15e

Added new OPSIZE for unsized instructions so they can be properly disassembled without making them special cases
author Mike Pavone <pavone@retrodev.com>
date Wed, 14 Nov 2012 09:24:40 -0800
parents 0a0cd3705c19
children 2bdad0f52f42
comparison
equal deleted inserted replaced
9:0a0cd3705c19 10:4553fc97b15e
103 103
104 typedef enum { 104 typedef enum {
105 OPSIZE_BYTE=0, 105 OPSIZE_BYTE=0,
106 OPSIZE_WORD, 106 OPSIZE_WORD,
107 OPSIZE_LONG, 107 OPSIZE_LONG,
108 OPSIZE_INVALID 108 OPSIZE_INVALID,
109 OPSIZE_UNSIZED
109 } m68K_opsizes; 110 } m68K_opsizes;
110 111
111 typedef enum { 112 typedef enum {
112 //actual addressing mode field values 113 //actual addressing mode field values
113 MODE_REG = 0, 114 MODE_REG = 0,