2021-02-08 15:17:50 -05: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.
|
|
|
|
*/
|
|
|
|
|
2023-01-01 16:19:40 -05:00
|
|
|
/* clang-format off */
|
2023-01-01 14:31:14 -05:00
|
|
|
|
2023-08-17 12:25:24 -04:00
|
|
|
#define PEEK2(d) (*(d) << 8 | (d)[1])
|
2023-08-25 12:38:03 -04:00
|
|
|
#define POKE2(d, v) { *(d) = (v) >> 8; (d)[1] = (v); }
|
2023-03-01 13:35:42 -05:00
|
|
|
|
2022-01-03 16:23:57 -05:00
|
|
|
/* clang-format on */
|
|
|
|
|
2023-08-08 18:31:48 -04:00
|
|
|
#define PAGE_PROGRAM 0x0100
|
|
|
|
|
2023-03-01 13:35:42 -05:00
|
|
|
typedef unsigned char Uint8;
|
|
|
|
typedef signed char Sint8;
|
|
|
|
typedef unsigned short Uint16;
|
|
|
|
typedef signed short Sint16;
|
|
|
|
typedef unsigned int Uint32;
|
|
|
|
|
2021-02-08 15:16:39 -05:00
|
|
|
typedef struct {
|
2023-08-17 12:25:24 -04:00
|
|
|
Uint8 dat[0x100], ptr;
|
2021-02-15 13:12:44 -05:00
|
|
|
} Stack;
|
2021-02-08 15:16:39 -05:00
|
|
|
|
2021-03-22 17:22:06 -04:00
|
|
|
typedef struct Uxn {
|
2023-12-20 03:20:22 -05:00
|
|
|
Uint8 *ram, *dev;
|
2023-04-11 13:14:29 -04:00
|
|
|
Stack wst, rst;
|
2021-02-08 17:18:01 -05:00
|
|
|
} Uxn;
|
2021-02-08 15:16:39 -05:00
|
|
|
|
2023-03-05 13:44:23 -05:00
|
|
|
/* required functions */
|
2023-01-01 15:04:54 -05:00
|
|
|
|
2023-07-23 22:18:11 -04:00
|
|
|
extern Uint8 emu_dei(Uxn *u, Uint8 addr);
|
2023-10-30 17:14:02 -04:00
|
|
|
extern void emu_deo(Uxn *u, Uint8 addr, Uint8 value);
|
2023-03-05 13:44:23 -05:00
|
|
|
|
|
|
|
/* built-ins */
|
|
|
|
|
|
|
|
int uxn_eval(Uxn *u, Uint16 pc);
|