X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fhexfile.h;h=0f46527d1cedc5b25cb388cc9c7dcbce890c3d1c;hb=dd2261ab6cd2b8ddc9fd0078c995ec943fee8dbd;hp=b90354261d981a7b38e01bde77f880c9ab5dbf7a;hpb=6a65dca9d597772744524b909f2d89b479b8bf77;p=emu8051.git diff --git a/src/hexfile.h b/src/hexfile.h index b903542..0f46527 100644 --- a/src/hexfile.h +++ b/src/hexfile.h @@ -16,15 +16,22 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef HEXFILE_H #define HEXFILE_H 1 - void -LoadHexFile( const char *filename ); +int2asciihex(int val, char *str, int width); + +int +asciihex2int(char *str); +unsigned int +Ascii2Hex(char *istring, int length); + +void +LoadHexFile(const char *filename); #endif /* HEXFILE_H */