fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
at master 42 lines 2.0 kB view raw
1/***************************************************************************** 2 * pce * 3 *****************************************************************************/ 4 5/***************************************************************************** 6 * File name: src/lib/srec.h * 7 * Created: 2005-03-28 by Hampa Hug <hampa@hampa.ch> * 8 * Copyright: (C) 2005-2009 Hampa Hug <hampa@hampa.ch> * 9 *****************************************************************************/ 10 11/***************************************************************************** 12 * This program is free software. You can redistribute it and / or modify it * 13 * under the terms of the GNU General Public License version 2 as published * 14 * by the Free Software Foundation. * 15 * * 16 * This program is distributed in the hope that it will be useful, but * 17 * WITHOUT ANY WARRANTY, without even the implied warranty of * 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * 19 * Public License for more details. * 20 *****************************************************************************/ 21 22 23#ifndef PCE_LIB_SREC_H 24#define PCE_LIB_SREC_H 1 25 26 27#include <stdio.h> 28 29 30typedef void (*srec_set_f) (void *ext, unsigned long addr, unsigned char val); 31typedef unsigned char (*srec_get_f) (void *ext, unsigned long addr); 32 33 34int srec_load_fp (FILE *fp, void *ext, srec_set_f set); 35int srec_load (const char *fname, void *ext, srec_set_f set); 36 37int srec_save_start (FILE *fp, const char *name); 38int srec_save (FILE *fp, unsigned long base, unsigned long size, void *ext, srec_get_f get); 39int srec_save_done (FILE *fp); 40 41 42#endif