From 882ae2a693a50cdfa072462be2d57b93078cf916 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Wed, 18 Aug 2021 09:42:00 +0200 Subject: Update UXN core with INC/DEC changes --- src/uxn.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/uxn.h') diff --git a/src/uxn.h b/src/uxn.h index a4ab428..bd9379c 100644 --- a/src/uxn.h +++ b/src/uxn.h @@ -49,8 +49,6 @@ static inline u8 devpeek8(Device *d, u8 a) { d->talk(d, a & 0x0f, 0); return d-> static inline void devpoke16(Device *d, u8 a, u16 b) { devpoke8(d, a, b >> 8); devpoke8(d, a + 1, b); } static inline u16 devpeek16(Device *d, u16 a) { return (devpeek8(d, a) << 8) + devpeek8(d, a + 1); } -int loaduxn(Uxn *c, char *filepath); -int bootuxn(Uxn *c); -int evaluxn(Uxn *u, u16 vec); -Device *portuxn(Uxn *u, u8 id, char *name, void (*talkfn)(Device *, u8, u8)); +int uxn_eval(Uxn *u, u16 vec); +Device *uxn_port(Uxn *u, u8 id, char *name, void (*talkfn)(Device *, u8, u8)); #endif // UXNGBA_UXN_H -- cgit v1.2.1