Browse code

Cleanup

neauoire authored on 21/03/2021 18:04:20
Showing 2 changed files
... ...
@@ -45,9 +45,9 @@ Program p;
45 45
 /* clang-format off */
46 46
 
47 47
 char ops[][4] = {
48
-	"BRK", "NOP", "LIT", "LDR", "STR", "---", "---", "---", 
48
+	"BRK", "NOP", "LIT", "POP", "DUP", "SWP", "OVR", "ROT",
49 49
 	"EQU", "NEQ", "GTH", "LTH", "GTS", "LTS", "JMP", "JSR",
50
-	"POP", "DUP", "SWP", "OVR", "ROT", "---", "CLN", "STH",
50
+	"LDR", "STR", "---", "---", "---", "---", "CLN", "STH",
51 51
 	"ADD", "SUB", "MUL", "DIV", "AND", "ORA", "EOR", "SFT"
52 52
 };
53 53
 
... ...
@@ -29,12 +29,15 @@ Uint8  peek8(Stack *s, Uint8 a) { return s->dat[s->ptr - a - 1]; }
29 29
 void   push16(Stack *s, Uint16 a) { push8(s, a >> 8); push8(s, a); }
30 30
 Uint16 pop16(Stack *s) { return pop8(s) + (pop8(s) << 8); }
31 31
 Uint16 peek16(Stack *s, Uint8 a) { return peek8(s, a * 2) + (peek8(s, a * 2 + 1) << 8); }
32
-/* Core */
32
+/* Stack */
33 33
 void op_brk(Uxn *u) { setflag(&u->status, FLAG_HALT, 1); }
34 34
 void op_lit(Uxn *u) { u->literal += 1; }
35 35
 void op_nop(Uxn *u) { (void)u; }
36
-void op_ldr(Uxn *u) { Uint16 a = pop16(u->src); push8(u->src, mempeek8(u, a)); }
37
-void op_str(Uxn *u) { Uint16 a = pop16(u->src); Uint8 b = pop8(u->src); mempoke8(u, a, b); }
36
+void op_pop(Uxn *u) { pop8(u->src); }
37
+void op_dup(Uxn *u) { push8(u->src, peek8(u->src, 0)); }
38
+void op_swp(Uxn *u) { Uint8 b = pop8(u->src), a = pop8(u->src); push8(u->src, b); push8(u->src, a); }
39
+void op_ovr(Uxn *u) { push8(u->src, peek8(u->src, 1)); }
40
+void op_rot(Uxn *u) { Uint8 c = pop8(u->src), b = pop8(u->src), a = pop8(u->src); push8(u->src, b); push8(u->src, c); push8(u->src, a); }
38 41
 /* Logic */
39 42
 void op_equ(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, b == a); }
40 43
 void op_neq(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, b != a); }
... ...
@@ -44,12 +47,9 @@ void op_gts(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, (S
44 47
 void op_lts(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, (Sint8)b < (Sint8)a); }
45 48
 void op_jmp(Uxn *u) { Uint8 a = pop8(u->src); u->ram.ptr += (Sint8)a; }
46 49
 void op_jsr(Uxn *u) { Uint8 a = pop8(u->src); push16(u->dst, u->ram.ptr); u->ram.ptr += (Sint8)a; }
47
-/* Stack */
48
-void op_pop(Uxn *u) { pop8(u->src); }
49
-void op_dup(Uxn *u) { push8(u->src, peek8(u->src, 0)); }
50
-void op_swp(Uxn *u) { Uint8 b = pop8(u->src), a = pop8(u->src); push8(u->src, b); push8(u->src, a); }
51
-void op_ovr(Uxn *u) { push8(u->src, peek8(u->src, 1)); }
52
-void op_rot(Uxn *u) { Uint8 c = pop8(u->src), b = pop8(u->src), a = pop8(u->src); push8(u->src, b); push8(u->src, c); push8(u->src, a); }
50
+/* Memory */
51
+void op_ldr(Uxn *u) { Uint16 a = pop16(u->src); push8(u->src, mempeek8(u, a)); }
52
+void op_str(Uxn *u) { Uint16 a = pop16(u->src); Uint8 b = pop8(u->src); mempoke8(u, a, b); }
53 53
 void op_cln(Uxn *u) { push8(u->src, peek8(u->dst, 0)); }
54 54
 void op_sth(Uxn *u) { Uint8 a = pop8(u->src); push8(u->dst, a); }
55 55
 /* Arithmetic */
... ...
@@ -61,11 +61,14 @@ void op_and(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, b
61 61
 void op_ora(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, b | a); }
62 62
 void op_eor(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); push8(u->src, b ^ a); }
63 63
 void op_sft(Uxn *u) { Uint8 a = pop8(u->src), b = pop8(u->src); Uint8 left = (a & 0xf0) >> 4; Uint8 right = (a & 0x0f); push8(u->src, b >> (right % 8) << (left % 8)); }
64
-/* Core */
64
+/* Stack */
65 65
 void op_lit16(Uxn *u) { u->literal += 2; }
66 66
 void op_nop16(Uxn *u) { printf("%04x\n", pop16(u->src)); }
67
-void op_ldr16(Uxn *u) { Uint16 a = pop16(u->src); push16(u->src, mempeek16(u, a)); }
68
-void op_str16(Uxn *u) { Uint16 a = pop16(u->src); Uint16 b = pop16(u->src); mempoke16(u, a, b); }
67
+void op_pop16(Uxn *u) { pop16(u->src); }
68
+void op_dup16(Uxn *u) { push16(u->src, peek16(u->src, 0)); }
69
+void op_swp16(Uxn *u) { Uint16 b = pop16(u->src), a = pop16(u->src); push16(u->src, b); push16(u->src, a); }
70
+void op_ovr16(Uxn *u) { push16(u->src, peek16(u->src, 1)); }
71
+void op_rot16(Uxn *u) { Uint16 c = pop16(u->src), b = pop16(u->src), a = pop16(u->src); push16(u->src, b); push16(u->src, c); push16(u->src, a); }
69 72
 /* Logic(16-bits) */
70 73
 void op_equ16(Uxn *u) { Uint16 a = pop16(u->src), b = pop16(u->src); push8(u->src, b == a); }
71 74
 void op_neq16(Uxn *u) { Uint16 a = pop16(u->src), b = pop16(u->src); push8(u->src, b != a); }
... ...
@@ -75,12 +78,9 @@ void op_gts16(Uxn *u) { Uint16 a = pop16(u->src), b = pop16(u->src); push8(u->sr
75 78
 void op_lts16(Uxn *u) { Uint16 a = pop16(u->src), b = pop16(u->src); push8(u->src, (Sint16)b < (Sint16)a); }
76 79
 void op_jmp16(Uxn *u) { u->ram.ptr = pop16(u->src); }
77 80
 void op_jsr16(Uxn *u) { push16(u->dst, u->ram.ptr); u->ram.ptr = pop16(u->src); }
78
-/* Stack(16-bits) */
79
-void op_pop16(Uxn *u) { pop16(u->src); }
80
-void op_dup16(Uxn *u) { push16(u->src, peek16(u->src, 0)); }
81
-void op_swp16(Uxn *u) { Uint16 b = pop16(u->src), a = pop16(u->src); push16(u->src, b); push16(u->src, a); }
82
-void op_ovr16(Uxn *u) { push16(u->src, peek16(u->src, 1)); }
83
-void op_rot16(Uxn *u) { Uint16 c = pop16(u->src), b = pop16(u->src), a = pop16(u->src); push16(u->src, b); push16(u->src, c); push16(u->src, a); }
81
+/* Memory(16-bits) */
82
+void op_ldr16(Uxn *u) { Uint16 a = pop16(u->src); push16(u->src, mempeek16(u, a)); }
83
+void op_str16(Uxn *u) { Uint16 a = pop16(u->src); Uint16 b = pop16(u->src); mempoke16(u, a, b); }
84 84
 void op_cln16(Uxn *u) { push16(u->src, peek16(u->dst, 0)); }
85 85
 void op_sth16(Uxn *u) { Uint16 a = pop16(u->src); push16(u->dst, a); }
86 86
 /* Arithmetic(16-bits) */
... ...
@@ -94,26 +94,26 @@ void op_eor16(Uxn *u) { Uint16 a = pop16(u->src), b = pop16(u->src); push16(u->s
94 94
 void op_sft16(Uxn *u) { Uint16 a = pop16(u->src), b = pop16(u->src); Uint8 left = (a & 0x00f0) >> 4; Uint8 right = (a & 0x000f); push16(u->src, b >> (right % 16) << (left % 16)); }
95 95
 
96 96
 void (*ops[])(Uxn *u) = {
97
-	op_brk, op_nop, op_lit, op_ldr, op_str, op_nop, op_nop, op_nop, 
97
+	op_brk, op_nop, op_lit, op_pop, op_dup, op_swp, op_ovr, op_rot,
98 98
 	op_equ, op_neq, op_gth, op_lth, op_gts, op_lts, op_jmp, op_jsr, 
99
-	op_pop, op_dup, op_swp, op_ovr, op_rot, op_nop, op_cln, op_sth, 
99
+	op_ldr, op_str, op_nop, op_nop, op_nop, op_nop, op_cln, op_sth, 
100 100
 	op_add, op_sub, op_mul, op_div, op_and, op_ora, op_eor, op_sft,
101 101
 	/* 16-bit */
102
-	op_brk,   op_nop16, op_lit16, op_ldr16, op_str16, op_nop,   op_nop,   op_nop, 
102
+	op_brk,   op_nop16, op_lit16, op_pop16, op_dup16, op_swp16, op_ovr16, op_rot16,
103 103
 	op_equ16, op_neq16, op_gth16, op_lth16, op_gts16, op_lts16, op_jmp16, op_jsr16, 
104
-	op_pop16, op_dup16, op_swp16, op_ovr16, op_rot16, op_nop,   op_cln16, op_sth16, 
104
+	op_ldr16, op_str16, op_nop,   op_nop,   op_nop,  op_nop,   op_cln16, op_sth16, 
105 105
 	op_add16, op_sub16, op_mul16, op_div16, op_and16, op_ora16, op_eor16, op_sft16
106 106
 };
107 107
 
108 108
 Uint8 opr[][4] = { /* wstack-/+ rstack-/+ */
109
-	{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,1,0,0}, {3,0,0,0}, {1,0,0,0}, {0,0,0,0}, {0,0,0,0},
109
+	{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {1,0,0,0}, {0,2,0,0}, {2,2,0,0}, {2,3,0,0}, {3,3,0,0},
110 110
 	{2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {1,0,0,0}, {1,0,0,2}, 
111
-	{1,0,0,0}, {0,2,0,0}, {2,2,0,0}, {2,3,0,0}, {3,3,0,0}, {0,0,0,0}, {0,0,0,1}, {0,1,1,0},
111
+	{2,1,0,0}, {3,0,0,0}, {1,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,1}, {0,1,1,0},
112 112
 	{2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0}, {2,1,0,0},
113 113
 	/* 16-bit */
114
-	{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {2,2,0,0}, {4,0,0,0}, {2,0,0,0}, {0,0,0,0}, {0,0,0,0},
114
+	{0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,2,0,0}, {0,2,0,0}, {1,1,0,0}, {4,6,0,0}, {6,6,0,0},
115 115
 	{4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,1,0,0}, {4,1,0,0}, {2,0,0,0}, {2,0,0,2},
116
-	{0,2,0,0}, {0,2,0,0}, {1,1,0,0}, {4,6,0,0}, {6,6,0,0}, {0,0,0,0}, {0,0,0,2}, {0,2,2,0},
116
+	{2,2,0,0}, {4,0,0,0}, {2,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,0}, {0,0,0,2}, {0,2,2,0},
117 117
 	{4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0}, {4,2,0,0},
118 118
 };
119 119