uxn/src/uxn.h

52 lines
1.1 KiB
C
Raw Normal View History

2021-02-08 20:16:39 +00:00
#include <stdio.h>
2021-02-08 20:17:50 +00:00
/*
Copyright (c) 2021 Devine Lu Linvega
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE.
*/
2021-02-08 20:16:39 +00:00
typedef unsigned char Uint8;
2021-02-13 00:18:52 +00:00
typedef signed char Sint8;
2021-02-08 20:16:39 +00:00
typedef unsigned short Uint16;
2021-02-13 00:18:52 +00:00
typedef signed short Sint16;
2021-02-08 20:16:39 +00:00
2021-03-21 20:58:32 +00:00
#define PAGE_DEVICE 0x0100
2021-04-08 16:59:45 +00:00
#define PAGE_PROGRAM 0x0200
2021-04-20 04:00:14 +00:00
#define LOAD_OFFSET 0x0200
2021-02-08 22:08:58 +00:00
2021-02-08 20:16:39 +00:00
typedef struct {
2021-03-26 15:35:45 +00:00
Uint8 ptr, error;
2021-02-08 20:16:39 +00:00
Uint8 dat[256];
2021-02-15 18:12:44 +00:00
} Stack;
2021-02-08 20:16:39 +00:00
typedef struct {
Uint16 ptr;
Uint8 dat[65536];
} Memory;
struct Uxn;
2021-02-09 18:58:06 +00:00
typedef struct Device {
Uint16 addr;
Uint8 (*poke)(struct Uxn *, Uint16, Uint8, Uint8);
2021-02-09 05:59:46 +00:00
} Device;
typedef struct Uxn {
2021-03-16 04:29:44 +00:00
Stack wst, rst, *src, *dst;
2021-02-08 20:16:39 +00:00
Memory ram;
Device dev[16];
2021-02-08 22:18:01 +00:00
} Uxn;
2021-02-08 20:16:39 +00:00
2021-02-08 23:46:52 +00:00
int loaduxn(Uxn *c, char *filepath);
int bootuxn(Uxn *c);
2021-02-09 05:59:46 +00:00
int evaluxn(Uxn *u, Uint16 vec);
2021-04-09 17:01:53 +00:00
void mempoke16(Uxn *u, Uint16 a, Uint16 b);
Uint16 mempeek16(Uxn *u, Uint16 a);
Device *portuxn(Uxn *u, Uint8 id, char *name, Uint8 (*pofn)(Uxn *, Uint16, Uint8, Uint8));