diff options
Diffstat (limited to 'agbx/source/bs/set.c')
-rw-r--r-- | agbx/source/bs/set.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/agbx/source/bs/set.c b/agbx/source/bs/set.c new file mode 100644 index 0000000..8aa9976 --- /dev/null +++ b/agbx/source/bs/set.c @@ -0,0 +1,13 @@ +/* + Copyright 2022 Gabriel Jensen. + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. + If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +*/ + +#include <agbx/priv.h> + +void agbx_set10(agbx_i20 const _addr,agbx_i10 const _val) {__agbx_set10(_addr,_val)} + +void agbx_set20(agbx_i20 const _addr,agbx_i20 const _val) {__agbx_set20(_addr,_val)} + +void agbx_set8(agbx_i20 const _addr,agbx_i8 const _val) {__agbx_set8(_addr,_val)} |