--- hatari/src/includes/gemdos.h 2019/04/09 08:49:29 1.1.1.12 +++ hatari/src/includes/gemdos.h 2019/04/09 08:59:23 1.1.1.17 @@ -1,8 +1,8 @@ /* Hatari - gemdos.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_GEMDOS_H #define HATARI_GEMDOS_H @@ -25,8 +25,11 @@ extern void GemDOS_InitDrives(void); extern void GemDOS_UnInitDrives(void); extern void GemDOS_MemorySnapShot_Capture(bool bSave); extern void GemDOS_CreateHardDriveFileName(int Drive, const char *pszFileName, char *pszDestName, int nDestNameLen); -extern void GemDOS_Info(Uint32 bShowOpcodes); +extern bool GemDOS_IsDriveEmulated(int drive); +extern void GemDOS_Info(FILE *fp, Uint32 bShowOpcodes); +extern void GemDOS_InfoDTA(FILE *fp, Uint32 addrDTA); extern void GemDOS_OpCode(void); extern void GemDOS_Boot(void); +extern int GemDOS_LoadAndReloc(const char *psPrgName, uint32_t baseaddr); #endif /* HATARI_GEMDOS_H */