diff options
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 57 | 
1 files changed, 57 insertions, 0 deletions
| @@ -1,6 +1,63 @@  2008-07-27  Cyrille Bagard <nocbos@gmail.com>  	* configure.ac: +	Forget to commit last time. + +	* src/arch/instruction.c: +	* src/arch/instruction.h: +	Change the data type (char -> uint8_t)  and update for the new internal +	structure. + +	* src/arch/instruction-int.h: +	Change the definition of the asm_instr structure. + +	* src/arch/operand.c: +	* src/arch/operand.h: +	Manage in a generic way 'db' and immediate values. + +	* src/arch/operand-int.h: +	Refine the operand description. + +	* src/arch/processor.c: +	* src/arch/processor.h: +	* src/arch/processor-int.h: +	Change the data type (char -> uint8_t) and handle the syntax. + +	* src/arch/x86/instruction.h: +	Add new opcodes and support prefixes. + +	* src/arch/x86/Makefile.am: +	Add op_nop.c, op_mov.c and operand.[ch] to libarchx86_a_SOURCES. + +	* src/arch/x86/opcodes.h: +	Keep the list up to date. + +	* src/arch/x86/operand.c: +	* src/arch/x86/operand.h: +	New entries: support some x86 specific operands. + +	* src/arch/x86/op_int.c: +	Change the data type (char -> uint8_t)  and update for the new internal +	structure. + +	* src/arch/x86/op_mov.c: +	* src/arch/x86/op_nop.c: +	New entries: Add these two new operands. + +	* src/arch/x86/processor.c: +	Change the data type (char -> uint8_t) and handle the syntax. Support +	opcode prefixes and new opcodes. Clean the code for fetching instructions +	and the one for printing them. + +	* src/binary.c: +	Change the data type (char -> uint8_t). + +	* src/gtksnippet.c: +	Ask for a given syntax (Intel). + +2008-07-27  Cyrille Bagard <nocbos@gmail.com> + +	* configure.ac:  	Remove AC_PROG_RANLIB in favor of AC_PROG_LIBTOOL. Add AM_PROG_CC_C_O  	and schedule the creation of the new Makefiles. | 
