0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-10-10 00:25:06 -04:00

insns: Fix ccmpscc T/F encoding

The encodings of 'true' and 'false' variants of the CCMPSCC instructions
were swapped. Correct that in the preprocessor script.

Signed-off-by: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
This commit is contained in:
Maciej Wieczor-Retman
2025-09-15 18:05:15 +02:00
parent 9d1943d3b6
commit 4a5bc1cec6

View File

@@ -307,7 +307,7 @@ my %conds = (
'z' => 4, 'nz' => 5, 'na' => 6, 'a' => 7,
's' => 8, 'ns' => 9,
'pe' => 10|$c_cc, 'po' => 11|$c_cc,
'f' => 10|$c_scc, 't' => 11|$c_scc,
't' => 10|$c_scc, 'f' => 11|$c_scc,
'l' => 12, 'nl' => 13, 'ng' => 14, 'g' => 15,
'ae' => 3|$c_nd, 'b' => 2|$c_nd, 'be' => 6|$c_nd, 'e' => 4|$c_nd,