diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-04-17 23:38:23 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-04-17 23:38:23 +0200 |
commit | 9b4b10a31954c00813a7cbf9411d30bc84eccea8 (patch) | |
tree | b82ff5eaab73fd26cb6c5c22e73919fd53d21d8e /lib/src/common.c | |
parent | 1d2a6f21294f8390b683e4e097cb49210ed832d1 (diff) | |
download | dynld-9b4b10a31954c00813a7cbf9411d30bc84eccea8.tar.gz dynld-9b4b10a31954c00813a7cbf9411d30bc84eccea8.zip |
add memset
Diffstat (limited to 'lib/src/common.c')
-rw-r--r-- | lib/src/common.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/src/common.c b/lib/src/common.c new file mode 100644 index 0000000..2d122f5 --- /dev/null +++ b/lib/src/common.c @@ -0,0 +1,18 @@ +// Copyright (c) 2021 Johannes Stoelp + +#include <common.h> + +#if !defined(__linux__) || !defined(__x86_64__) +# error "Only supported on linux(x86_64)!" +#endif + +void* memset(void* s, int c, size_t n) { + asm volatile( + "cld" + "\n" + "rep stosb" + : "+D"(s), "+c"(n) + : "a"(c) + : "memory"); + return s; +} |