AxWin2 - More fiddling, almost ready now :)
[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