shows: press start button

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@17 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-01-11 22:21:34 +00:00
parent bf098bc532
commit c459aefdad
6 changed files with 128 additions and 107 deletions

View file

@ -162,6 +162,14 @@ struct PicoSRAM
#include "cd/cd_sys.h"
#include "cd/LC89510.h"
struct mcd_misc
{
unsigned short hint_vector;
unsigned char busreq;
unsigned char pad0;
};
typedef struct
{
unsigned char bios[0x20000];
@ -171,10 +179,10 @@ typedef struct
};
unsigned char word_ram[0x40000];
unsigned char s68k_regs[0x200];
unsigned char m68k_regs[0x10];
CDD cdd;
CDC cdc;
_scd scd;
struct mcd_misc m;
} mcd_state;
#define Pico_mcd ((mcd_state *)Pico.rom)