Index: trunk/mkopcode_spec.awk
===================================================================
--- trunk/mkopcode_spec.awk	(revision 564)
+++ trunk/mkopcode_spec.awk	(revision 565)
@@ -10,17 +10,14 @@
 /OPDEF/ {
 	if (started) {
+		sub(/".*"/, "")
 		if (!match($0, /EXT_([^ |]+).*OP[1S]_([^ |]+).*OP2_([^ |]+).*RES_([^ |)]+).*/, array)) {
 			print "error" $0
 			exit
 		}
-		id = "";
-		if (match($0, /\/\* *([0-9]+) *\*\//, m)) {
-			id = m[1];
+		comment = "";
+		if (match($0, /\/\* (\d+) \*\//, comments)) {
+			comment = comments[1];
 		}
-		name = "";
-		if (match($0, /"([^"]+)"/, m)) {
-			name = m[1];
-		}
-		printf "\tOPSPEC(%10s, %10s, %10s, %10s) /* %s %s */\n", array[1], array[2], array[3], array[4], id, name;
+		printf "\tOPSPEC(%10s, %10s, %10s, %10s)%s\n", array[1], array[2], array[3], array[4], comment;
 		next
 	}
