shithub: scc

Download patch

ref: 9a7daac8e7801a3ab7e5321780c8166139b37905
parent: ea27f2927ea17f942a925e042dbb21423c8146c1
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue May 22 17:47:30 EDT 2018

[as/i286] Fix Name of BX register

BC is the name in z80 ...

--- a/as/target/x86/i286.c
+++ b/as/target/x86/i286.c
@@ -24,7 +24,7 @@
 		"AL", AREG_AL,
 		"AH", AREG_AH,
 
-		"BC", AREG_BX,
+		"BX", AREG_BX,
 		"BL", AREG_BL,
 		"BH", AREG_BH,