I suspect this is GS side which should really be handled by GS which also doesn't current have a fifo, but we can guess from our fifo
| 34 | |
| 35 | //I suspect this is GS side which should really be handled by GS which also doesn't current have a fifo, but we can guess from our fifo |
| 36 | static __fi void CalculateFIFOCSR() |
| 37 | { |
| 38 | if (gifRegs.stat.FQC >= 15) |
| 39 | { |
| 40 | CSRreg.FIFO = CSR_FIFO_FULL; |
| 41 | } |
| 42 | else if (gifRegs.stat.FQC == 0) |
| 43 | { |
| 44 | CSRreg.FIFO = CSR_FIFO_EMPTY; |
| 45 | } |
| 46 | else |
| 47 | { |
| 48 | CSRreg.FIFO = CSR_FIFO_NORMAL; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | |
| 53 | bool CheckPaths() |
no outgoing calls
no test coverage detected