From: <mic...@us...> - 2007-04-13 09:02:44
|
Revision: 33 http://svn.sourceforge.net/pearcolator/?rev=33&view=rev Author: michael_baer Date: 2007-04-13 02:02:45 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Class renamed. Added Paths: ----------- src/org/binarytranslator/generic/gdbstub/GdbTarget.java Removed Paths: ------------- src/org/binarytranslator/generic/gdbstub/GDBTarget.java Deleted: src/org/binarytranslator/generic/gdbstub/GDBTarget.java =================================================================== --- src/org/binarytranslator/generic/gdbstub/GDBTarget.java 2007-04-13 09:02:24 UTC (rev 32) +++ src/org/binarytranslator/generic/gdbstub/GDBTarget.java 2007-04-13 09:02:45 UTC (rev 33) @@ -1,43 +0,0 @@ -package org.binarytranslator.generic.gdbstub; - -import org.binarytranslator.generic.fault.BadInstructionException; - -public interface GDBTarget { - /** - * Read a register from the target machine. - * - * @param regNum - * A register number, starting from 0. - */ - byte[] readRegisterGDB(int regNum); - - /** - * Run a single instruction - */ - void runOneInstruction() throws BadInstructionException; - - /** - * Has frame base register? - */ - boolean hasFrameBaseRegister(); - - /** - * Get the value of the frame base register - */ - int getGDBFrameBaseRegister(); - - /** - * Get the value of the frame base register - */ - int getGDBStackPointerRegister(); - - /** - * Get the value of the frame base register - */ - int getGDBProgramCountRegister(); - - /** - * Return the address of the current instruction. - */ - int getCurrentInstructionAddress(); -} Copied: src/org/binarytranslator/generic/gdbstub/GdbTarget.java (from rev 32, src/org/binarytranslator/generic/gdbstub/GDBTarget.java) =================================================================== --- src/org/binarytranslator/generic/gdbstub/GdbTarget.java (rev 0) +++ src/org/binarytranslator/generic/gdbstub/GdbTarget.java 2007-04-13 09:02:45 UTC (rev 33) @@ -0,0 +1,43 @@ +package org.binarytranslator.generic.gdbstub; + +import org.binarytranslator.generic.fault.BadInstructionException; + +public interface GDBTarget { + /** + * Read a register from the target machine. + * + * @param regNum + * A register number, starting from 0. + */ + byte[] readRegisterGDB(int regNum); + + /** + * Run a single instruction + */ + void runOneInstruction() throws BadInstructionException; + + /** + * Has frame base register? + */ + boolean hasFrameBaseRegister(); + + /** + * Get the value of the frame base register + */ + int getGDBFrameBaseRegister(); + + /** + * Get the value of the frame base register + */ + int getGDBStackPointerRegister(); + + /** + * Get the value of the frame base register + */ + int getGDBProgramCountRegister(); + + /** + * Return the address of the current instruction. + */ + int getCurrentInstructionAddress(); +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |