fixes
h3rald h3rald@h3rald.com
Fri, 12 Dec 2025 07:51:20 +0100
M
xyw.c
→
xyw.c
@@ -6,7 +6,7 @@ int xyw_debug = 0;
// Instruction mnemonics definition const char xyw_instructions[][4] = { - "BRK", "PSH", "POP", "???", + "BRK", "PSH", "POP", "CLR", "LDB", "LDW", "STB", "STW", "INC", "DEC", "SHL", "SHR", "ADD", "SUB", "MUL", "DIV",@@ -15,7 +15,7 @@ "AND", "IOR", "XOR", "NOT",
"SWP", "DUP", "OVR", "ROT", "JMP", "JCN", "JSR", "RTS"}; -//// Main Function + int main(int argc, char *argv[]) { (void)argc;
M
xywasm.c
→
xywasm.c
@@ -975,6 +975,6 @@ XYW_POKEW(&data[refsym->address], defsym->address);
} fwrite(data, 1, ptr, fp); fclose(fp); - printf("File '%s' assembled successfully [%d bytes - %d symbols - %d refs]\n", input, ptr, symcount, refcount); + printf("Image '%s' assembled successfully [%d bytes - %d symbols - %d refs]\n", output, ptr, symcount, refcount); return 0; }