uxn/src/uxn.h

65 lines
1.7 KiB
C
Raw Normal View History

2022-03-05 21:56:30 +00:00
#ifndef UXN_UXN_H
#define UXN_UXN_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;
typedef unsigned int Uint32;
2021-02-08 20:16:39 +00:00
2021-04-20 21:30:26 +00:00
#define PAGE_PROGRAM 0x0100
2022-01-03 21:23:57 +00:00
/* clang-format off */
#define DEVPEEK16(o, x) { (o) = (d->dat[(x)] << 8) + d->dat[(x) + 1]; }
#define DEVPOKE16(x, y) { d->dat[(x)] = (y) >> 8; d->dat[(x) + 1] = (y); }
2022-01-08 00:46:50 +00:00
#define GETVECTOR(d) ((d)->dat[0] << 8 | (d)->dat[1])
2022-01-03 21:23:57 +00:00
/* new macros */
#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 ptr, dat[255];
2021-02-15 18:12:44 +00:00
} Stack;
2021-02-08 20:16:39 +00:00
2021-02-09 18:58:06 +00:00
typedef struct Device {
struct Uxn *u;
2022-01-13 05:22:33 +00:00
Uint8 dat[16];
Uint8 (*dei)(struct Device *d, Uint8);
void (*deo)(struct Device *d, Uint8);
2021-02-09 05:59:46 +00:00
} Device;
typedef struct Uxn {
2022-01-13 02:40:51 +00:00
Uint8 *ram;
Stack wst, rst;
Device devold[16];
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);
int uxn_boot(Uxn *u, Uint8 *ram, Dei *dei, Deo *deo);
int uxn_eval(Uxn *u, Uint16 pc);
int uxn_interrupt(void);
2022-01-05 13:06:22 +00:00
int uxn_halt(Uxn *u, Uint8 error, Uint16 addr);
2022-01-07 19:48:09 +00:00
Device *uxn_port(Uxn *u, Uint8 id, Uint8 (*deifn)(Device *, Uint8), void (*deofn)(Device *, Uint8));
2022-03-06 18:02:22 +00:00
#endif /* UXN_UXN_H */