MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / IsDmaCommand

Function IsDmaCommand

src/dolphin/src/dvd/dvd.c:853–867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

851}
852
853inline static BOOL IsDmaCommand(u32 command)
854{
855 u32 i;
856
857 if (command == 1 || command == 4 || command == 5 || command == 14)
858 return TRUE;
859
860 for (i = 0; i < sizeof(DmaCommand) / sizeof(DmaCommand[0]); i++)
861 {
862 if (command == DmaCommand[i])
863 return TRUE;
864 }
865
866 return FALSE;
867}
868
869static void cbForStateBusy(u32 intType)
870{

Callers 1

cbForStateBusyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected