--- hatari/src/includes/cart.h 2019/04/01 07:09:16 1.1 +++ hatari/src/includes/cart.h 2019/04/09 08:59:22 1.1.1.8 @@ -1,15 +1,15 @@ /* - Hatari + Hatari - cart.h + + 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. */ -/* Workspace in our 'cart.s' internal program */ -#define CART_HARDDRV (0xfa1000) -#define CART_OLDGEMDOS (0xfa1000+4) -#define CART_VDI_OPCODE_ADDR (0xfa1000+8) -#define CART_GEMDOS (0xfa1000+10) +/* Workspace in our 'cart_asm.s' internal program */ +#define CART_OLDGEMDOS (0xfa0024) +#define CART_VDI_OPCODE_ADDR (0xfa0028) +#define CART_GEMDOS (0xfa002a) -#define CART_HDV_ADDR_1 (0xFA1454+2) -#define CART_HDV_ADDR_2 (0xFA1486+2) +extern void Cart_ResetImage(void); +extern void Cart_PatchCpuTables(void); -extern void Cart_LoadImage(void); -extern void Cart_WriteHdvAddress(unsigned short int HdvAddress);