Browse code

Formatted changes

neauoire authored on 28/08/2021 17:49:51
Showing 2 changed files
... ...
@@ -153,7 +153,7 @@ makemacro(char *name, FILE *f)
153 153
 		return error("Macro duplicate", name);
154 154
 	if(sihx(name) && slen(name) % 2 == 0)
155 155
 		return error("Macro name is hex number", name);
156
-	if(findopcode(name) || scmp(name, "BRK", 4) || !slen(name) || scmp(name,"include",8))
156
+	if(findopcode(name) || scmp(name, "BRK", 4) || !slen(name) || scmp(name, "include", 8))
157 157
 		return error("Macro name is invalid", name);
158 158
 	m = &p.macros[p.mlen++];
159 159
 	scpy(name, m->name, 64);
... ...
@@ -132,13 +132,13 @@ uxn_halt(Uxn *u, Uint8 error, char *name, int id)
132 132
 static void
133 133
 run(Uxn *u)
134 134
 {
135
-    Uint16 vec = PAGE_PROGRAM;
135
+	Uint16 vec = PAGE_PROGRAM;
136 136
 	uxn_eval(u, vec);
137 137
 	while((!u->dev[0].dat[0xf]) && (read(0, &devconsole->dat[0x2], 1) > 0)) {
138
-        vec = mempeek16(devconsole->dat, 0);
139
-        if (!vec) vec = u->ram.ptr; /* continue after last BRK */
138
+		vec = mempeek16(devconsole->dat, 0);
139
+		if(!vec) vec = u->ram.ptr; /* continue after last BRK */
140 140
 		uxn_eval(u, vec);
141
-    }
141
+	}
142 142
 }
143 143
 
144 144
 static int