Skip to content

Commit

Permalink
Missed one file and reverted back another one.
Browse files Browse the repository at this point in the history
1337 revision :D
  • Loading branch information
julioauto committed Mar 24, 2009
1 parent a86190d commit 71a8302
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion evarista/eva-typedecl.esh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ type bloc::container = vaddr:caddr size:int symoff:int seen:byte
type func::container = vaddr:caddr size:int name:byte[64] first:*bloc md5:byte[34]
type link = id:oid type:byte scope:byte

#source lir-definition.esh
source lir-definition.esh

type
29 changes: 29 additions & 0 deletions libasm/src/arch/ia32/operand_handlers/asm_operand_fetch_fpu.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/**
* @file asm_operand_fetch_fpu.c
* @ingroup operand_handler
* $Id: asm_operand_fetch_fpu.c 1319 2009-03-24 22:48:58Z strauss $
*/

#include <libasm.h>
#include <libasm-int.h>

/**
* @todo
* Implement optional parameter for FPU operand fetching.
*/
/**
* @ingroup operand_handler
* Decode data for operand type ASM_CONTENT_FPU
* @param operand Pointer to operand structure to fill.
* @param opcode Pointer to operand data
* @param otype
* @param ins Pointer to instruction structure.
* @return Operand length
*/

int asm_operand_fetch_fpu(asm_operand *operand, u_char *opcode,
int otype, asm_instr *ins)
{
operand->content = ASM_CONTENT_FPU;
return (0);
}

0 comments on commit 71a8302

Please sign in to comment.