diff 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
line wrap: on
line diff
--- a/z80inst.h	Mon May 06 00:57:56 2013 -0700
+++ b/z80inst.h	Wed May 08 14:40:48 2013 -0700
@@ -132,6 +132,9 @@
 
 uint8_t * z80_decode(uint8_t * istream, z80inst * decoded);
 int z80_disasm(z80inst * decoded, char * dst);
+uint8_t z80_high_reg(uint8_t reg);
+uint8_t z80_low_reg(uint8_t reg);
+uint8_t z80_word_reg(uint8_t reg);
 
 #endif //Z80INST_H_