diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-07 04:31:29 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-07 04:31:29 +0000 |
| commit | 2d5a9a02425951f4efed764d135be96867eb532f (patch) | |
| tree | d94be7649ef8ccb627df551ac69f5d4a6a941cb6 /libpcsxcore/psxdma.h | |
| parent | 6a4fd490f8c754883bee9468be8d35dc7a651cee (diff) | |
| download | pcsxr-2d5a9a02425951f4efed764d135be96867eb532f.tar.gz | |
preparing for refactor/cleanup, moved all definations into .c files, other minor cleanups. (Breaks Mac OS X and maybe windows as well for now, will fix later.)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47542 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/psxdma.h')
| -rw-r--r-- | libpcsxcore/psxdma.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpcsxcore/psxdma.h b/libpcsxcore/psxdma.h index 04457268..636a4bdb 100644 --- a/libpcsxcore/psxdma.h +++ b/libpcsxcore/psxdma.h @@ -27,14 +27,14 @@ #define GPUDMA_INT(eCycle) { \ psxRegs.interrupt |= 0x01000000; \ - psxRegs.intCycle[3+24+1] = eCycle; \ - psxRegs.intCycle[3+24] = psxRegs.cycle; \ + psxRegs.intCycle[3 + 24 + 1] = eCycle; \ + psxRegs.intCycle[3 + 24] = psxRegs.cycle; \ } #define MDECOUTDMA_INT(eCycle) { \ psxRegs.interrupt |= 0x02000000; \ - psxRegs.intCycle[5+24+1] = eCycle; \ - psxRegs.intCycle[5+24] = psxRegs.cycle; \ + psxRegs.intCycle[5 + 24 + 1] = eCycle; \ + psxRegs.intCycle[5 + 24] = psxRegs.cycle; \ } void psxDma2(u32 madr, u32 bcr, u32 chcr); @@ -43,4 +43,4 @@ void psxDma4(u32 madr, u32 bcr, u32 chcr); void psxDma6(u32 madr, u32 bcr, u32 chcr); void gpuInterrupt(); -#endif /* __PSXDMA_H__ */ +#endif |
