mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
amalgamation
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@227 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
a4f0cc8647
commit
eff55556cf
35 changed files with 607 additions and 363 deletions
|
@ -1,6 +1,20 @@
|
|||
// common code for Memory.c and cd/Memory.c
|
||||
// (c) Copyright 2006-2007, Grazvydas "notaz" Ignotas
|
||||
|
||||
#ifndef UTYPES_DEFINED
|
||||
typedef unsigned char u8;
|
||||
typedef unsigned short u16;
|
||||
typedef unsigned int u32;
|
||||
#define UTYPES_DEFINED
|
||||
#endif
|
||||
|
||||
#ifdef _ASM_MEMORY_C
|
||||
u32 OtherRead16End(u32 a, int realsize);
|
||||
#endif
|
||||
#ifdef _ASM_CD_MEMORY_C
|
||||
static void OtherWrite8End(u32 a,u32 d,int realsize);
|
||||
#endif
|
||||
|
||||
static int PadRead(int i)
|
||||
{
|
||||
int pad=0,value=0,TH;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue