filename | src/pvr2/pvr2.h |
changeset | 325:5717ae5d4746 |
prev | 322:354407942957 |
next | 327:00d55a462af3 |
author | nkeynes |
date | Thu Jan 25 10:16:32 2007 +0000 (13 years ago) |
permissions | -rw-r--r-- |
last change | Move PVR2 dma handling (0x10000000-0x13FFFFFF) into pvr2mem.c, minor register cleanups in asic.c |
file | annotate | diff | log | raw |
1.1 --- a/src/pvr2/pvr2.h Thu Jan 25 08:18:03 2007 +00001.2 +++ b/src/pvr2/pvr2.h Thu Jan 25 10:16:32 2007 +00001.3 @@ -1,5 +1,5 @@1.4 /**1.5 - * $Id: pvr2.h,v 1.27 2007-01-25 08:18:03 nkeynes Exp $1.6 + * $Id: pvr2.h,v 1.28 2007-01-25 10:16:32 nkeynes Exp $1.7 *1.8 * PVR2 (video chip) functions and macros.1.9 *1.10 @@ -112,6 +112,12 @@1.11 /****************************** Frame Buffer *****************************/1.13 /**1.14 + * Write a block of data to an address in the DMA range (0x10000000 -1.15 + * 0x13FFFFFF), ie TA, YUV, or texture ram.1.16 + */1.17 +void pvr2_dma_write( sh4addr_t dest, char *src, uint32_t length );1.18 +1.19 +/**1.20 * Write to the interleaved memory address space (aka 64-bit address space).1.21 */1.22 void pvr2_vram64_write( sh4addr_t dest, char *src, uint32_t length );
.