mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-18 08:55:46 -04:00
16 lines
335 B
C
16 lines
335 B
C
/*
|
|
Copyright (C) 2007 Acekard, www.acekard.com
|
|
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
inline void fillMemory(void* addr, u32 count, u32 value) {
|
|
swiFastCopy((void*)(&value), addr, (count >> 2) | COPY_MODE_WORD | COPY_MODE_FILL);
|
|
}
|
|
|
|
inline void zeroMemory(void* addr, u32 count) {
|
|
fillMemory(addr, count, 0);
|
|
}
|