uxn/src/uxn.h

45 lines
1.2 KiB
C
Raw Normal View History

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;
typedef unsigned int Uint32;
2021-02-08 20:16:39 +00:00
2021-04-20 21:30:26 +00:00
#define PAGE_PROGRAM 0x0100
/* clang-format off */
#define GETVEC(d) ((d)[0] << 8 | (d)[1])
#define POKDEV(x, y) { d[(x)] = (y) >> 8; d[(x) + 1] = (y); }
#define PEKDEV(o, x) { (o) = (d[(x)] << 8) + d[(x) + 1]; }
2022-01-03 21:23:57 +00:00
/* clang-format on */
2021-02-08 20:16:39 +00:00
typedef struct {
Uint8 dat[254], err, ptr;
2021-02-15 18:12:44 +00:00
} Stack;
2021-02-08 20:16:39 +00:00
typedef struct Uxn {
2023-01-01 20:21:30 +00:00
Uint8 *ram, *dev;
Stack *wst, *rst;
Uint8 (*dei)(struct Uxn *u, Uint8 addr);
void (*deo)(struct Uxn *u, Uint8 addr, Uint8 value);
2021-02-08 22:18:01 +00:00
} Uxn;
2021-02-08 20:16:39 +00:00
typedef Uint8 Dei(Uxn *u, Uint8 addr);
typedef void Deo(Uxn *u, Uint8 addr, Uint8 value);
2023-01-02 02:26:28 +00:00
int uxn_halt(Uxn *u, Uint8 instr, Uint8 err, Uint16 addr);
int uxn_boot(Uxn *u, Uint8 *ram, Dei *dei, Deo *deo);
int uxn_eval(Uxn *u, Uint16 pc);