git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Mental note, adding resources is a good idea
[tpg/acess2.git]
/
Usermode
/
Applications
/
axwin2_src
/
WM
/
helpers.c
1
/*
2
* Acess GUI (AxWin) Version 2
3
* By John Hodge (thePowersGang)
4
*/
5
#include "common.h"
6
7
// === CODE ===
8
void memset32(void *ptr, uint32_t val, size_t count)
9
{
10
__asm__ __volatile__ ("rep stosl" : : "D"(ptr),"a"(val),"c"(count));
11
}
UCC
git Repository :: git.ucc.asn.au