mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
starting SMS work
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@756 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
d8f51995c4
commit
3e49ffd0bf
10 changed files with 246 additions and 80 deletions
|
@ -551,6 +551,11 @@ PICO_INTERNAL void PsndClear(void);
|
|||
PICO_INTERNAL void PsndGetSamples(int y);
|
||||
extern int PsndDacLine;
|
||||
|
||||
// sms.c
|
||||
void PicoPowerMS(void);
|
||||
void PicoMemSetupMS(void);
|
||||
void PicoFrameMS(void);
|
||||
|
||||
// emulation event logging
|
||||
#ifndef EL_LOGMASK
|
||||
#define EL_LOGMASK 0
|
||||
|
@ -596,7 +601,7 @@ extern void lprintf(const char *fmt, ...);
|
|||
#define cdprintf(x...)
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && !defined(ARM)
|
||||
#if defined(__GNUC__) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 3
|
||||
#define MEMH_FUNC __attribute__((aligned(4)))
|
||||
#else
|
||||
#define MEMH_FUNC
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue