comparison z80inst.h @ 292:b970ea214ecb

Added z80 test generator and z80 test runner.
author Mike Pavone <pavone@retrodev.com>
date Wed, 08 May 2013 14:40:48 -0700
parents d9bf8e61c33c
children a13329645ea3
comparison
equal deleted inserted replaced
291:eea3b118940d 292:b970ea214ecb
130 uint16_t immed; 130 uint16_t immed;
131 } z80inst; 131 } z80inst;
132 132
133 uint8_t * z80_decode(uint8_t * istream, z80inst * decoded); 133 uint8_t * z80_decode(uint8_t * istream, z80inst * decoded);
134 int z80_disasm(z80inst * decoded, char * dst); 134 int z80_disasm(z80inst * decoded, char * dst);
135 uint8_t z80_high_reg(uint8_t reg);
136 uint8_t z80_low_reg(uint8_t reg);
137 uint8_t z80_word_reg(uint8_t reg);
135 138
136 #endif //Z80INST_H_ 139 #endif //Z80INST_H_
137 140