commit cb1dcd1
neauoire
·
2023-08-07 23:28:41 +0000 UTC
parent 1f662d2
Returned the simpler uxn core, connected to device masks
3 files changed,
+83,
-112
+20,
-15
1@@ -46,6 +46,24 @@ screen_fill(Uint8 *layer, int x1, int y1, int x2, int y2, int color)
2 layer[x + y * width] = color;
3 }
4
5+static void
6+screen_blit(Uint8 *layer, Uint8 *ram, Uint16 addr, int x1, int y1, int color, int flipx, int flipy, int twobpp)
7+{
8+ int v, h, width = uxn_screen.width, height = uxn_screen.height, opaque = (color % 5);
9+ for(v = 0; v < 8; v++) {
10+ Uint16 c = ram[(addr + v) & 0xffff] | (twobpp ? (ram[(addr + v + 8) & 0xffff] << 8) : 0);
11+ Uint16 y = y1 + (flipy ? 7 - v : v);
12+ for(h = 7; h >= 0; --h, c >>= 1) {
13+ Uint8 ch = (c & 1) | ((c >> 7) & 2);
14+ if(opaque || ch) {
15+ Uint16 x = x1 + (flipx ? 7 - h : h);
16+ if(x < width && y < height)
17+ layer[x + y * width] = blending[ch][color];
18+ }
19+ }
20+ }
21+}
22+
23 void
24 screen_palette(Uint8 *addr)
25 {
26@@ -167,28 +185,15 @@ screen_deo(Uint8 *ram, Uint8 *d, Uint8 port)
27 Uint8 length = move >> 4;
28 Uint8 twobpp = !!(ctrl & 0x80);
29 Uint8 *layer = (ctrl & 0x40) ? uxn_screen.fg : uxn_screen.bg;
30- Uint8 color = ctrl & 0xf, opaque = color % 5;
31+ Uint8 color = ctrl & 0xf;
32 Uint16 x = PEEK2(d + 0x8), dx = (move & 0x1) << 3;
33 Uint16 y = PEEK2(d + 0xa), dy = (move & 0x2) << 2;
34 Uint16 addr = PEEK2(d + 0xc), addr_incr = (move & 0x4) << (1 + twobpp);
35 int flipx = (ctrl & 0x10), fx = flipx ? -1 : 1;
36 int flipy = (ctrl & 0x20), fy = flipy ? -1 : 1;
37- int v, h, width = uxn_screen.width, height = uxn_screen.height;
38 Uint16 dyx = dy * fx, dxy = dx * fy;
39 for(i = 0; i <= length; i++) {
40- Uint16 x1 = x + dyx * i, y1 = y + dxy * i;
41- for(v = 0; v < 8; v++) {
42- Uint16 c = ram[(addr + v) & 0xffff] | (twobpp ? (ram[(addr + v + 8) & 0xffff] << 8) : 0);
43- Uint16 y = y1 + (flipy ? 7 - v : v);
44- for(h = 7; h >= 0; --h, c >>= 1) {
45- Uint8 ch = (c & 1) | ((c >> 7) & 2);
46- if(opaque || ch) {
47- Uint16 x = x1 + (flipx ? 7 - h : h);
48- if(x < width && y < height)
49- layer[x + y * width] = blending[ch][color];
50- }
51- }
52- }
53+ screen_blit(layer, ram, addr, x + dyx * i, y + dxy * i, color, flipx, flipy, twobpp);
54 addr += addr_incr;
55 }
56 screen_change(x, y, x + dyx * length + 8, y + dxy * length + 8);
+61,
-97
1@@ -11,113 +11,77 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2 WITH REGARD TO THIS SOFTWARE.
3 */
4
5-/* Registers
6-[ . ][ . ][ . ][ L ][ N ][ T ] <
7-[ . ][ . ][ . ][ H2 ][ T ] <
8-[ L2 ][ N2 ][ T2 ] <
9-*/
10-
11-#define T s->dat[s->ptr - 1]
12-#define N s->dat[s->ptr - 2]
13-#define L s->dat[s->ptr - 3]
14-#define T2 PEEK2(s->dat + s->ptr - 2)
15-#define H2 PEEK2(s->dat + s->ptr - 3)
16-#define N2 PEEK2(s->dat + s->ptr - 4)
17-#define L2 PEEK2(s->dat + s->ptr - 6)
18-
19 #define HALT(c) { return emu_halt(u, ins, (c), pc - 1); }
20-#define FLIP { s = ins & 0x40 ? &u->wst : &u->rst; }
21-#define SET(x, y) { if(x > s->ptr) HALT(1) tmp = (x & k) + y + s->ptr; if(tmp > 254) HALT(2) s->ptr = tmp; }
22-#define PUT(o, v) { s->dat[(s->ptr - 1 - (o))] = (v); }
23-#define PUT2(o, v) { tmp = (v); POKE2(s->dat + (s->ptr - o - 2), tmp); }
24-#define DEO(a, b) { u->dev[(a)] = (b); if((deo_mask[(a) >> 4] >> ((a) & 0xf)) & 0x1) emu_deo(u, (a)); }
25-#define DEI(a, b) { PUT((a), ((dei_mask[(b) >> 4] >> ((b) & 0xf)) & 0x1) ? emu_dei(u, (b)) : u->dev[(b)]) }
26+#define FLIP { s = (ins & 0x40) ? &u->wst : &u->rst; }
27+#define JUMP(x) { if(m2) pc = (x); else pc += (Sint8)(x); }
28+#define POKE(x, y) { if(m2) { POKE2(ram + x, y) } else { ram[(x)] = (y); } }
29+#define PEEK(o, x) { if(m2) { o = PEEK2(ram + x); } else o = ram[(x)]; }
30+#define PUSH1(y) { if(s->ptr == 0xff) HALT(2) s->dat[s->ptr++] = (y); }
31+#define PUSH2(y) { if((tsp = s->ptr) >= 0xfe) HALT(2) t = (y); POKE2(&s->dat[tsp], t); s->ptr = tsp + 2; }
32+#define PUSHx(y) { if(m2) { PUSH2(y) } else { PUSH1(y) } }
33+#define POP1(o) { if(*sp == 0x00) HALT(1) o = s->dat[--*sp]; }
34+#define POP2(o) { if((tsp = *sp) <= 0x01) HALT(1) o = PEEK2(&s->dat[tsp - 2]); *sp = tsp - 2; }
35+#define POPx(o) { if(m2) { POP2(o) } else { POP1(o) } }
36+#define DEVW(p, y) { if(m2) { DEO(p, y >> 8) DEO((p + 1), y) } else { DEO(p, y) } }
37+#define DEVR(o, p) { if(m2) { o = ((DEI(p) << 8) + DEI(p + 1)); } else { o = DEI(p); } }
38
39 int
40 uxn_eval(Uxn *u, Uint16 pc)
41 {
42- int t, n, l, k, tmp, ins, opc;
43- Uint8 *ram = u->ram;
44+ Uint8 ins, opc, m2, ksp, tsp, *sp, *ram = u->ram;
45+ Uint16 a, b, c, t;
46 Stack *s;
47 if(!pc || u->dev[0x0f]) return 0;
48 for(;;) {
49 ins = ram[pc++];
50- k = ins & 0x80 ? 0xff : 0;
51+ /* modes */
52+ opc = ins & 0x1f;
53+ m2 = ins & 0x20;
54 s = ins & 0x40 ? &u->rst : &u->wst;
55- opc = !(ins & 0x1f) ? (0 - (ins >> 5)) & 0xff : ins & 0x3f;
56- switch(opc) {
57- /* IMM */
58- case 0x00: /* BRK */ return 1;
59- case 0xff: /* JCI */ if(!s->dat[--s->ptr]) { pc += 2; break; }
60- case 0xfe: /* JMI */ pc += PEEK2(ram + pc) + 2; break;
61- case 0xfd: /* JSI */ SET(0, 2) PUT2(0, pc + 2) pc += PEEK2(ram + pc) + 2; break;
62- case 0xfc: /* LIT */ SET(0, 1) PUT(0, ram[pc++]) break;
63- case 0xfb: /* LIT2 */ SET(0, 2) PUT2(0, PEEK2(ram + pc)) pc += 2; break;
64- case 0xfa: /* LITr */ SET(0, 1) PUT(0, ram[pc++]) break;
65- case 0xf9: /* LIT2r */ SET(0, 2) PUT2(0, PEEK2(ram + pc)) pc += 2; break;
66- /* ALU */
67- case 0x01: /* INC */ t=T; SET(1, 0) PUT(0, t + 1) break;
68- case 0x21: t=T2; SET(2, 0) PUT2(0, t + 1) break;
69- case 0x02: /* POP */ SET(1,-1) break;
70- case 0x22: SET(2,-2) break;
71- case 0x03: /* NIP */ t=T; SET(2,-1) PUT(0, t) break;
72- case 0x23: t=T2; SET(4,-2) PUT2(0, t) break;
73- case 0x04: /* SWP */ t=T;n=N; SET(2, 0) PUT(0, n) PUT(1, t) break;
74- case 0x24: t=T2;n=N2; SET(4, 0) PUT2(0, n) PUT2(2, t) break;
75- case 0x05: /* ROT */ t=T;n=N;l=L; SET(3, 0) PUT(0, l) PUT(1, t) PUT(2, n) break;
76- case 0x25: t=T2;n=N2;l=L2; SET(6, 0) PUT2(0, l) PUT2(2, t) PUT2(4, n) break;
77- case 0x06: /* DUP */ t=T; SET(1, 1) PUT(0, t) PUT(1, t) break;
78- case 0x26: t=T2; SET(2, 2) PUT2(0, t) PUT2(2, t) break;
79- case 0x07: /* OVR */ t=T;n=N; SET(2, 1) PUT(0, n) PUT(1, t) PUT(2, n) break;
80- case 0x27: t=T2;n=N2; SET(4, 2) PUT2(0, n) PUT2(2, t) PUT2(4, n) break;
81- case 0x08: /* EQU */ t=T;n=N; SET(2,-1) PUT(0, n == t) break;
82- case 0x28: t=T2;n=N2; SET(4,-3) PUT(0, n == t) break;
83- case 0x09: /* NEQ */ t=T;n=N; SET(2,-1) PUT(0, n != t) break;
84- case 0x29: t=T2;n=N2; SET(4,-3) PUT(0, n != t) break;
85- case 0x0a: /* GTH */ t=T;n=N; SET(2,-1) PUT(0, n > t) break;
86- case 0x2a: t=T2;n=N2; SET(4,-3) PUT(0, n > t) break;
87- case 0x0b: /* LTH */ t=T;n=N; SET(2,-1) PUT(0, n < t) break;
88- case 0x2b: t=T2;n=N2; SET(4,-3) PUT(0, n < t) break;
89- case 0x0c: /* JMP */ t=T; SET(1,-1) pc += (Sint8)t; break;
90- case 0x2c: t=T2; SET(2,-2) pc = t; break;
91- case 0x0d: /* JCN */ t=T;n=N; SET(2,-2) if(n) pc += (Sint8)t; break;
92- case 0x2d: t=T2;n=L; SET(3,-3) if(n) pc = t; break;
93- case 0x0e: /* JSR */ t=T; SET(1,-1) FLIP SET(0,2) PUT2(0, pc) pc += (Sint8)t; break;
94- case 0x2e: t=T2; SET(2,-2) FLIP SET(0,2) PUT2(0, pc) pc = t; break;
95- case 0x0f: /* STH */ t=T; SET(1,-1) FLIP SET(0,1) PUT(0, t) break;
96- case 0x2f: t=T2; SET(2,-2) FLIP SET(0,2) PUT2(0, t) break;
97- case 0x10: /* LDZ */ t=T; SET(1, 0) PUT(0, ram[t]) break;
98- case 0x30: t=T; SET(1, 1) PUT2(0, PEEK2(ram + t)) break;
99- case 0x11: /* STZ */ t=T;n=N; SET(2,-2) ram[t] = n; break;
100- case 0x31: t=T;n=H2; SET(3,-3) POKE2(ram + t, n) break;
101- case 0x12: /* LDR */ t=T; SET(1, 0) PUT(0, ram[pc + (Sint8)t]) break;
102- case 0x32: t=T; SET(1, 1) PUT2(0, PEEK2(ram + pc + (Sint8)t)) break;
103- case 0x13: /* STR */ t=T;n=N; SET(2,-2) ram[pc + (Sint8)t] = n; break;
104- case 0x33: t=T;n=H2; SET(3,-3) POKE2(ram + pc + (Sint8)t, n) break;
105- case 0x14: /* LDA */ t=T2; SET(2,-1) PUT(0, ram[t]) break;
106- case 0x34: t=T2; SET(2, 0) PUT2(0, PEEK2(ram + t)) break;
107- case 0x15: /* STA */ t=T2;n=L; SET(3,-3) ram[t] = n; break;
108- case 0x35: t=T2;n=N2; SET(4,-4) POKE2(ram + t, n) break;
109- case 0x16: /* DEI */ t=T; SET(1, 0) DEI(0, t) break;
110- case 0x36: t=T; SET(1, 1) DEI(1, t) DEI(0, t + 1) break;
111- case 0x17: /* DEO */ t=T;n=N; SET(2,-2) DEO(t, n) break;
112- case 0x37: t=T;n=N;l=L; SET(3,-3) DEO(t, l) DEO(t + 1, n) break;
113- case 0x18: /* ADD */ t=T;n=N; SET(2,-1) PUT(0, n + t) break;
114- case 0x38: t=T2;n=N2; SET(4,-2) PUT2(0, n + t) break;
115- case 0x19: /* SUB */ t=T;n=N; SET(2,-1) PUT(0, n - t) break;
116- case 0x39: t=T2;n=N2; SET(4,-2) PUT2(0, n - t) break;
117- case 0x1a: /* MUL */ t=T;n=N; SET(2,-1) PUT(0, n * t) break;
118- case 0x3a: t=T2;n=N2; SET(4,-2) PUT2(0, n * t) break;
119- case 0x1b: /* DIV */ t=T;n=N; SET(2,-1) if(!t) HALT(3) PUT(0, n / t) break;
120- case 0x3b: t=T2;n=N2; SET(4,-2) if(!t) HALT(3) PUT2(0, n / t) break;
121- case 0x1c: /* AND */ t=T;n=N; SET(2,-1) PUT(0, n & t) break;
122- case 0x3c: t=T2;n=N2; SET(4,-2) PUT2(0, n & t) break;
123- case 0x1d: /* ORA */ t=T;n=N; SET(2,-1) PUT(0, n | t) break;
124- case 0x3d: t=T2;n=N2; SET(4,-2) PUT2(0, n | t) break;
125- case 0x1e: /* EOR */ t=T;n=N; SET(2,-1) PUT(0, n ^ t) break;
126- case 0x3e: t=T2;n=N2; SET(4,-2) PUT2(0, n ^ t) break;
127- case 0x1f: /* SFT */ t=T;n=N; SET(2,-1) PUT(0, n >> (t & 0xf) << (t >> 4)) break;
128- case 0x3f: t=T;n=H2; SET(3,-1) PUT2(0, n >> (t & 0xf) << (t >> 4)) break;
129+ if(ins & 0x80) { ksp = s->ptr; sp = &ksp; } else sp = &s->ptr;
130+ /* Opcodes */
131+ switch(opc - (!opc * (ins >> 5))) {
132+ /* Immediate */
133+ case -0x0: /* BRK */ return 1;
134+ case -0x1: /* JCI */ POP1(b) if(!b) { pc += 2; break; } /* else fallthrough */
135+ case -0x2: /* JMI */ pc += PEEK2(ram + pc) + 2; break;
136+ case -0x3: /* JSI */ PUSH2(pc + 2) pc += PEEK2(ram + pc) + 2; break;
137+ case -0x4: /* LIT */
138+ case -0x6: /* LITr */ a = ram[pc++]; PUSH1(a) break;
139+ case -0x5: /* LIT2 */
140+ case -0x7: /* LIT2r */ PUSH2(PEEK2(ram + pc)) pc += 2; break;
141+ /* ALU */
142+ case 0x01: /* INC */ POPx(a) PUSHx(a + 1) break;
143+ case 0x02: /* POP */ POPx(a) break;
144+ case 0x03: /* NIP */ POPx(a) POPx(b) PUSHx(a) break;
145+ case 0x04: /* SWP */ POPx(a) POPx(b) PUSHx(a) PUSHx(b) break;
146+ case 0x05: /* ROT */ POPx(a) POPx(b) POPx(c) PUSHx(b) PUSHx(a) PUSHx(c) break;
147+ case 0x06: /* DUP */ POPx(a) PUSHx(a) PUSHx(a) break;
148+ case 0x07: /* OVR */ POPx(a) POPx(b) PUSHx(b) PUSHx(a) PUSHx(b) break;
149+ case 0x08: /* EQU */ POPx(a) POPx(b) PUSH1(b == a) break;
150+ case 0x09: /* NEQ */ POPx(a) POPx(b) PUSH1(b != a) break;
151+ case 0x0a: /* GTH */ POPx(a) POPx(b) PUSH1(b > a) break;
152+ case 0x0b: /* LTH */ POPx(a) POPx(b) PUSH1(b < a) break;
153+ case 0x0c: /* JMP */ POPx(a) JUMP(a) break;
154+ case 0x0d: /* JCN */ POPx(a) POP1(b) if(b) JUMP(a) break;
155+ case 0x0e: /* JSR */ POPx(a) FLIP PUSH2(pc) JUMP(a) break;
156+ case 0x0f: /* STH */ POPx(a) FLIP PUSHx(a) break;
157+ case 0x10: /* LDZ */ POP1(a) PEEK(b, a) PUSHx(b) break;
158+ case 0x11: /* STZ */ POP1(a) POPx(b) POKE(a, b) break;
159+ case 0x12: /* LDR */ POP1(a) PEEK(b, pc + (Sint8)a) PUSHx(b) break;
160+ case 0x13: /* STR */ POP1(a) POPx(b) POKE(pc + (Sint8)a, b) break;
161+ case 0x14: /* LDA */ POP2(a) PEEK(b, a) PUSHx(b) break;
162+ case 0x15: /* STA */ POP2(a) POPx(b) POKE(a, b) break;
163+ case 0x16: /* DEI */ POP1(a) DEVR(b, a) PUSHx(b) break;
164+ case 0x17: /* DEO */ POP1(a) POPx(b) DEVW(a, b) break;
165+ case 0x18: /* ADD */ POPx(a) POPx(b) PUSHx(b + a) break;
166+ case 0x19: /* SUB */ POPx(a) POPx(b) PUSHx(b - a) break;
167+ case 0x1a: /* MUL */ POPx(a) POPx(b) PUSHx((Uint32)b * a) break;
168+ case 0x1b: /* DIV */ POPx(a) POPx(b) if(!a) HALT(3) PUSHx(b / a) break;
169+ case 0x1c: /* AND */ POPx(a) POPx(b) PUSHx(b & a) break;
170+ case 0x1d: /* ORA */ POPx(a) POPx(b) PUSHx(b | a) break;
171+ case 0x1e: /* EOR */ POPx(a) POPx(b) PUSHx(b ^ a) break;
172+ case 0x1f: /* SFT */ POP1(a) POPx(b) PUSHx(b >> (a & 0xf) << (a >> 4)) break;
173 }
174 }
175 }
+2,
-0
1@@ -15,6 +15,8 @@ WITH REGARD TO THIS SOFTWARE.
2
3 #define POKE2(d, v) { (d)[0] = (v) >> 8; (d)[1] = (v); }
4 #define PEEK2(d) ((d)[0] << 8 | (d)[1])
5+#define DEO(p, value) { u->dev[p] = value; if((deo_mask[p >> 4] >> (p & 0xf)) & 0x1) emu_deo(u, p); }
6+#define DEI(p) ((dei_mask[(p) >> 4] >> ((p) & 0xf)) & 0x1 ? emu_dei(u, (p)) : u->dev[(p)])
7
8 /* clang-format on */
9