mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
19 lines
416 B
C
19 lines
416 B
C
#pragma once
|
|
#include "EmptyAICA.h"
|
|
|
|
u32 FASTCALL ReadMem_reg(u32 addr,u32 size);
|
|
void FASTCALL WriteMem_reg(u32 addr,u32 data,u32 size);
|
|
|
|
u32 ReadMem_ram(u32 addr,u32 size);
|
|
void WriteMem_ram(u32 addr,u32 data,u32 size);
|
|
|
|
void FASTCALL UpdateAICA(u32 Cycles);
|
|
|
|
#define AICA_MEM_SIZE (2*1024*1024)
|
|
#define AICA_MEM_MASK (AICA_MEM_SIZE-1)
|
|
|
|
void init_mem();
|
|
void term_mem();
|
|
|
|
extern u8 *aica_reg;
|
|
extern u8 *aica_mem;
|