Continue setup SPU

This commit is contained in:
2022-08-31 21:17:14 +02:00
parent b070dc655a
commit 48ba6a4f8b
3 changed files with 77 additions and 13 deletions

View File

@@ -23,7 +23,7 @@
}
template<typename T>
static constexpr __always_inline void io_class__volatile_assign(T& dst, const T& src) {
static constexpr __always_inline void io_class__update_with(T& dst, const T& src) {
typedef decltype(dst.raw_value) DST_VALUE;
const_cast<volatile DST_VALUE&>(dst.raw_value) = src.raw_value;