Implement wfi and setReference GPFIFO barriers

This commit is contained in:
Billy Laws 2022-12-27 19:20:52 +00:00
parent 7315ba04e6
commit 918a493a45

View File

@ -117,6 +117,12 @@ namespace skyline::soc::gm20b::engine {
break;
}
})
ENGINE_CASE(wfi, {
channelCtx.executor.Submit();
})
ENGINE_CASE(setReference, {
channelCtx.executor.Submit();
})
}
};
}