filename | test/asic.h |
changeset | 193:31151fcc3cb7 |
prev | 185:6755a04c447f |
next | 753:1fe39c3a9bbc |
author | nkeynes |
date | Sat Aug 05 00:18:21 2006 +0000 (16 years ago) |
permissions | -rw-r--r-- |
last change | Add error lines to tests with incomplete polys Split clip tests to separate data file Add tests for cmd bit 23 ("use list size field") |
file | annotate | diff | log | raw |
1.1 --- a/test/asic.h Tue Jul 11 01:35:27 2006 +00001.2 +++ b/test/asic.h Sat Aug 05 00:18:21 2006 +00001.3 @@ -20,9 +20,14 @@1.4 #define EVENT_PVR_DMA 191.5 #define EVENT_PVR_PUNCHOUT_DONE 211.7 +#define EVENT_TA_ERROR 311.8 #define EVENT_IDE 321.9 #define EVENT_AICA 331.11 +#define EVENT_PVR_PRIM_ALLOC_FAIL 661.12 +#define EVENT_PVR_MATRIX_ALLOC_FAIL 671.13 +#define EVENT_PVR_BAD_INPUT 681.14 +1.15 /**1.16 * Wait for an ASIC event.1.17 * @return 0 if the event occurred, otherwise -1 if the wait timed out.1.18 @@ -30,6 +35,12 @@1.19 int asic_wait( int event );1.21 /**1.22 + * Check if an ASIC event is active (does not wait)1.23 + * @return 0 if inactive, nonzero if active.1.24 + */1.25 +int asic_check( int event );1.26 +1.27 +/**1.28 * Clear all asic events1.29 */1.30 void asic_clear();
.