50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
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.
|
|
*/
|
|
|
|
typedef unsigned char Uint8;
|
|
typedef signed char Sint8;
|
|
typedef unsigned short Uint16;
|
|
typedef signed short Sint16;
|
|
|
|
#define PAGE_PROGRAM 0x0100
|
|
|
|
typedef struct {
|
|
Uint8 ptr, kptr, error;
|
|
Uint8 dat[256];
|
|
} Stack;
|
|
|
|
typedef struct {
|
|
Uint16 ptr;
|
|
Uint8 dat[65536];
|
|
} Memory;
|
|
|
|
typedef struct Device {
|
|
struct Uxn *u;
|
|
Uint8 addr, dat[16], *mem;
|
|
int (*talk)(struct Device *d, Uint8, Uint8);
|
|
} Device;
|
|
|
|
typedef struct Uxn {
|
|
Stack wst, rst, *src, *dst;
|
|
Memory ram;
|
|
Device dev[16];
|
|
} Uxn;
|
|
|
|
struct Uxn;
|
|
|
|
void poke16(Uint8 *m, Uint16 a, Uint16 b);
|
|
Uint16 peek16(Uint8 *m, Uint16 a);
|
|
|
|
int uxn_boot(Uxn *c);
|
|
int uxn_eval(Uxn *u, Uint16 vec);
|
|
int uxn_halt(Uxn *u, Uint8 error, char *name, int id);
|
|
Device *uxn_port(Uxn *u, Uint8 id, int (*talkfn)(Device *, Uint8, Uint8));
|