aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: f89c9434e5fa84a40150aae6fa647d6196bbc4be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
Sat Nov 24 16:31:48 2007 -0800 H. Peter Anvin 
  * Typo fixes in documentation
Tue Nov 20 23:37:46 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc3
Tue Nov 20 21:45:16 2007 -0800 H. Peter Anvin 
  * Unbreak CMPSW/CMPSD/CMPSQ
Tue Nov 20 13:23:34 2007 -0800 H. Peter Anvin 
  * Merge branch 'master' of git+ssh://repo.or.cz/srv/git/nasm
Tue Nov 20 13:22:58 2007 -0800 H. Peter Anvin 
  * ndisasm: handle the case of "no more sync points"
Mon Nov 19 23:09:31 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc2
Mon Nov 19 23:09:24 2007 -0800 H. Peter Anvin 
  * tag-release: a simple script to tag the repository for release
Mon Nov 19 13:14:59 2007 -0800 H. Peter Anvin 
  * Slightly faster implementation of the deadman counter
Mon Nov 19 12:26:50 2007 -0800 H. Peter Anvin 
  * BR 812417: Deadman counter for macro expansion
Mon Nov 19 12:02:38 2007 -0800 H. Peter Anvin 
  * BR 877583: Fix RAA memory leak
Mon Nov 19 11:53:18 2007 -0800 H. Peter Anvin 
  * BR 863173: Fix offsets of TIMES/INCBIN in list file
Mon Nov 19 11:45:40 2007 -0800 H. Peter Anvin 
  * BR 1834731: Remove redundant error messages for no input file
Mon Nov 19 11:44:05 2007 -0800 H. Peter Anvin 
  * insns.pl: remove debugging output
Sun Nov 18 22:18:09 2007 -0800 H. Peter Anvin 
  * Clean up remaining build warnings
Sun Nov 18 21:55:26 2007 -0800 H. Peter Anvin 
  * BR 1834292: Fix multiple disassembler bugs
Sun Nov 18 12:01:05 2007 -0800 H. Peter Anvin 
  * BR 1834056: Remove warnings in rdoff/rdoff.c
Sun Nov 18 11:55:10 2007 -0800 H. Peter Anvin 
  * BR 1091926: Bounds checking for command line parsing
Sat Nov 17 21:21:18 2007 -0800 H. Peter Anvin 
  * Remove FIXME from documentation
Sat Nov 17 21:08:33 2007 -0800 Charles Crayne 
  * Check in Keith's Fixes
Sat Nov 17 14:35:19 2007 -0800 H. Peter Anvin 
  * Make the definition for float_const() match the prototype
Fri Nov 16 00:03:02 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc1
Thu Nov 15 17:12:29 2007 -0800 H. Peter Anvin 
  * Clean up the command-line parsing; make -w/-W match others
Thu Nov 15 14:38:19 2007 -0800 H. Peter Anvin 
  * BR 993895: Support zero-operand floating-point insn
Thu Nov 15 10:25:52 2007 -0800 H. Peter Anvin 
  * Remove some vestiges of "native" RESW/RESD support
Thu Nov 15 10:24:55 2007 -0800 H. Peter Anvin 
  * outbin.c: fix one missed change from type -> size
Tue Nov 13 19:52:54 2007 -0800 root 
  * Support setting OSABI value in ELF header.
Tue Nov 13 11:34:34 2007 -0800 H. Peter Anvin 
  * Enable a few warnings by default; clean up warning descriptions
Tue Nov 13 11:31:15 2007 -0800 H. Peter Anvin 
  * Add gcc-style -W/-Wno- warning selections; -Wall; -Werror
Tue Nov 13 10:37:23 2007 -0800 H. Peter Anvin 
  * Clean up the fwrite*() function definitions somewhat
Tue Nov 13 09:49:51 2007 -0800 H. Peter Anvin 
  * Cast 64-bit switch expressions to (int) to keep OpenWatcom happy
Tue Nov 13 09:46:38 2007 -0800 H. Peter Anvin 
  * x86-host-specific performance improvement
Tue Nov 13 09:37:59 2007 -0800 H. Peter Anvin 
  * Address data is int64_t; simplify writing an address object
Mon Nov 12 23:00:31 2007 -0800 H. Peter Anvin 
  * ndisasm: factor out the common operand-extraction code
Mon Nov 12 22:56:07 2007 -0800 H. Peter Anvin 
  * Un-special-case "xchg rax,rax"; disassemble o64
Mon Nov 12 22:11:46 2007 -0800 H. Peter Anvin 
  * BR 1709392: Fix alignment handling in Mach-O format
Mon Nov 12 22:05:31 2007 -0800 H. Peter Anvin 
  * BR 1828866: fix handling of LAR/LSL
Mon Nov 12 21:57:00 2007 -0800 H. Peter Anvin 
  * Better (but not *good!*) handling of 64-bit addressing in ndisasm
Mon Nov 12 21:02:33 2007 -0800 H. Peter Anvin 
  * Fix disassembly of XCHG
Mon Nov 12 20:18:33 2007 -0800 H. Peter Anvin 
  * Test of XCHG
Mon Nov 12 20:18:05 2007 -0800 H. Peter Anvin 
  * Fix handling of XCHG in 64-bit mode
Mon Nov 12 19:36:13 2007 -0800 H. Peter Anvin 
  * More \321 -> \324 bug fixes
Mon Nov 12 18:26:31 2007 -0800 H. Peter Anvin 
  * float.c: all warnings and errors are pass 1 only
Sat Nov 10 21:55:19 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives.
Sat Nov 10 17:52:23 2007 -0800 Charles Crayne 
  * Clean up a few more 32-bit bottlenecks
Fri Nov 9 16:37:41 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives
Fri Nov 9 16:33:54 2007 -0800 Charles Crayne 
  * Merge branch 'master' of /home/chuck/development/gitnasm/
Fri Nov 9 16:25:43 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives
Fri Nov 9 14:44:02 2007 -0800 H. Peter Anvin 
  * Don't combine type and size into a single argument
Thu Nov 8 22:11:14 2007 -0800 Charles Crayne 
  * Add flat64 to %stacksize choices
Thu Nov 8 20:43:22 2007 -0800 H. Peter Anvin 
  * Fix building under OpenWatcom
Thu Nov 8 20:29:37 2007 -0800 H. Peter Anvin 
  * ps2pdf: remove -dOptimize=true
Thu Nov 8 20:21:41 2007 -0800 H. Peter Anvin 
  * No binary files left in the source distro; unbreak release script
Thu Nov 8 20:01:11 2007 -0800 H. Peter Anvin 
  * BR 1828103: Fix %arg and %local
Thu Nov 8 19:34:01 2007 -0800 H. Peter Anvin 
  * nasmlib.c: prefix_name(): use the elements() macro
Thu Nov 8 19:30:22 2007 -0800 H. Peter Anvin 
  * Move elements() to nasmlib.h
Thu Nov 8 19:15:33 2007 -0800 H. Peter Anvin 
  * constipate the "str" argument to bsi() and bsii()
Wed Nov 7 19:03:46 2007 -0800 Charles Crayne 
  * Upgrade RAA functions to hold 64-bit data.
Tue Nov 6 21:48:12 2007 -0800 Charles Crayne 
  * Pass 64-bit instruction lengths to back-ends.
Tue Nov 6 18:27:23 2007 -0800 Charles Crayne 
  * Prepare for 64-bit instruction lengths
Mon Nov 5 21:49:49 2007 -0800 Charles Crayne 
  * Disambiguate error messages
Mon Nov 5 17:19:32 2007 -0800 Charles Crayne 
  * Upgrade label functions to 64-bit
Sun Nov 4 21:10:42 2007 -0800 H. Peter Anvin 
  * Permit opcode names as labels as long as they are followed by a colon
Sun Nov 4 15:28:30 2007 -0800 Charles Crayne 
  * Make warning limit valid for both i386 and x86_64
Sat Nov 3 22:06:13 2007 -0700 Charles Crayne 
  * Warn on out of bounds EA displacements
Thu Nov 1 15:08:27 2007 -0700 H. Peter Anvin 
  * Treat info files as binary when creating xdoc distro file
Thu Nov 1 15:07:42 2007 -0700 H. Peter Anvin 
  * Remove obsolete binary files from the distribution
Thu Nov 1 14:53:32 2007 -0700 H. Peter Anvin 
  * Move declarations before statements
Wed Oct 31 23:37:35 2007 -0700 H. Peter Anvin 
  * NASM 0.99.06
Wed Oct 31 23:37:19 2007 -0700 H. Peter Anvin 
  * Script to tag the tree for release
Wed Oct 31 10:59:26 2007 -0700 H. Peter Anvin 
  * Even more "riprel" tests
Tue Oct 30 01:17:57 2007 -0700 H. Peter Anvin 
  * floatx.asm: add tests for "rounds up to smallest denorm"
Tue Oct 30 01:13:27 2007 -0700 H. Peter Anvin 
  * Run "make alldeps"
Tue Oct 30 01:13:09 2007 -0700 H. Peter Anvin 
  * float.c: handle round-up-to-denorm correctly.
Tue Oct 30 00:59:27 2007 -0700 H. Peter Anvin 
  * Exhaustive test for 8-bit floating point values
Mon Oct 29 23:12:47 2007 -0700 H. Peter Anvin 
  * Clean up the handing of operands in assemble.c
Mon Oct 29 22:56:08 2007 -0700 H. Peter Anvin 
  * Don't warn for segmented references
Mon Oct 29 20:20:12 2007 -0700 H. Peter Anvin 
  * Use a 32-bit floating-point limb size; support 8-bit float
Mon Oct 29 18:24:59 2007 -0700 Charles Crayne 
  * Reduce severity of redundant prefixes from error to warning.
Sun Oct 28 23:23:24 2007 -0700 H. Peter Anvin 
  * Test of some addressing modes in 64-bit mode.
Sun Oct 28 23:21:46 2007 -0700 H. Peter Anvin 
  * Fix bogus flagging of effective addresses as invalid
Sun Oct 28 23:10:34 2007 -0700 H. Peter Anvin 
  * Actually shut up the warning in rdfload.c
Sun Oct 28 22:04:42 2007 -0700 H. Peter Anvin 
  * Clean up stealth whitespace
Sun Oct 28 22:04:00 2007 -0700 H. Peter Anvin 
  * Fix warning about cast to pointer in rdfload.c
Sun Oct 28 22:04:00 2007 -0700 H. Peter Anvin 
  * 64-bit addressing and prefix handling changes
Sun Oct 28 15:29:54 2007 -0700 Charles Crayne 
  * Adjust stabs symbol index to match symbol table.
Fri Oct 26 21:38:02 2007 -0700 H. Peter Anvin 
  * readnum(): handle prefix-suffix collision like "0h"
Fri Oct 26 18:49:29 2007 -0700 H. Peter Anvin 
  * Better handling of platforms which hide "extended" functionality
Wed Oct 24 15:51:40 2007 -0700 Charles Crayne 
  * Merge branch 'master' of /home/chuck/development/gitnasm/
Wed Oct 24 15:30:17 2007 -0700 Charles Crayne 
  * Update sections about debug info formats
Wed Oct 24 15:29:51 2007 -0700 H. Peter Anvin 
  * Fix the handling of floating-point tokens in the preprocessor
Tue Oct 23 19:28:39 2007 -0700 Charles Crayne 
  * Fix bugs item #1817677
Tue Oct 23 00:08:58 2007 -0700 H. Peter Anvin 
  * Slightly simplify the radix-detection code
Mon Oct 22 19:48:06 2007 -0700 H. Peter Anvin 
  * Unbreak particularly tricky hex constants
Mon Oct 22 19:37:36 2007 -0700 H. Peter Anvin 
  * Decimal floating point can also start with 0. 0e 0E
Mon Oct 22 17:34:10 2007 -0700 H. Peter Anvin 
  * Support binary and octal floating-point
Mon Oct 22 16:53:48 2007 -0700 H. Peter Anvin 
  * More consistent handling of radix letters
Sun Oct 21 15:33:01 2007 -0700 H. Peter Anvin 
  * float.c: correct exponent capping
Sun Oct 21 14:21:43 2007 -0700 Charles Crayne 
  * Clean up elf symbol table section
Fri Oct 19 18:33:57 2007 -0700 H. Peter Anvin 
  * Allow $-prefixed hexadecimal FP as an alternative to 0x
Fri Oct 19 14:43:22 2007 -0700 H. Peter Anvin 
  * Scripts to remove stealth whitespace
Fri Oct 19 14:42:29 2007 -0700 H. Peter Anvin 
  * Formatting: kill off "stealth whitespace"
Fri Oct 19 14:26:52 2007 -0700 H. Peter Anvin 
  * test/floatx.asm: fix test case
Fri Oct 19 14:19:52 2007 -0700 H. Peter Anvin 
  * uscore.asm: Fix test case
Fri Oct 19 14:17:51 2007 -0700 H. Peter Anvin 
  * float.c: mark read_exponent() static
Fri Oct 19 14:10:35 2007 -0700 H. Peter Anvin 
  * Don't confuse suffixed hexadecimal with floating-point
Fri Oct 19 13:17:24 2007 -0700 H. Peter Anvin 
  * Anchor filename locations in .gitignore
Fri Oct 19 13:16:51 2007 -0700 H. Peter Anvin 
  * test/Makefile: Use -Ox instead of -O999
Fri Oct 19 13:14:06 2007 -0700 H. Peter Anvin 
  * Test of underscored constants
Fri Oct 19 13:10:46 2007 -0700 H. Peter Anvin 
  * Allow underscores in numbers; better detection of FP
Fri Oct 19 10:52:31 2007 -0700 H. Peter Anvin 
  * Modernize nasm.spec.in and make it closer to the Fedora version
Thu Oct 18 23:33:06 2007 -0700 Charles Crayne 
  * Suppress datarootdir warnings from configure
Thu Oct 18 21:17:20 2007 -0700 Charles Crayne 
  * Suppress signedness warnings in disassembler
Thu Oct 18 19:14:08 2007 -0700 H. Peter Anvin 
  * Cleaner solution for MinGW handling of __STRICT_ANSI__
Thu Oct 18 19:14:08 2007 -0700 H. Peter Anvin 
  * configure: Undefine __STRICT_ANSI__ for mingw's benefit
Thu Oct 18 19:14:07 2007 -0700 H. Peter Anvin 
  * Fix invocation of readnum()
Thu Oct 18 19:02:42 2007 -0700 Charles Crayne 
  * Suppress a few signedness warnings
Thu Oct 18 17:04:10 2007 -0700 root 
  * Avoid unnecessary warning on redefinition of section (bug 801180)
Wed Oct 17 17:55:45 2007 -0700 Charles Crayne 
  * Generate stabs entries for any executable section
Tue Oct 16 22:59:09 2007 -0700 H. Peter Anvin 
  * NASM 0.99.05
Tue Oct 16 15:46:04 2007 -0700 H. Peter Anvin 
  * Tests of obscenely large exponents
Tue Oct 16 14:42:32 2007 -0700 H. Peter Anvin 
  * Comma-separate contents of __FLOAT__
Tue Oct 16 14:40:27 2007 -0700 H. Peter Anvin 
  * Implement floating-point option control directive
Tue Oct 16 11:48:07 2007 -0700 H. Peter Anvin 
  * Floating-point warning fixes; fix round-to-overflow
Tue Oct 16 11:32:58 2007 -0700 H. Peter Anvin 
  * Handle rounding of denorms correctly; make fp overflow a warning
Tue Oct 16 10:35:02 2007 -0700 H. Peter Anvin 
  * Additional entries for .gitignore
Tue Oct 16 10:32:57 2007 -0700 H. Peter Anvin 
  * Refactor floating-point formatting code; fix 80-bit denorms
Tue Oct 16 10:31:16 2007 -0700 H. Peter Anvin 
  * Add 1.5 as a test case: representative of an exact fraction
Mon Oct 15 20:06:06 2007 -0700 H. Peter Anvin 
  * Recognize 'd', 't' and 'y' as radix suffixes
Mon Oct 15 19:53:10 2007 -0700 H. Peter Anvin 
  * Fix FISTTP opcodes (BR 689695)
Mon Oct 15 19:46:32 2007 -0700 H. Peter Anvin 
  * New floating-point conversion routines
Mon Oct 15 17:48:43 2007 -0700 H. Peter Anvin 
  * Add testnos3 from the gdtoa package (floating-point test)
Sat Oct 13 23:19:21 2007 -0700 H. Peter Anvin 
  * .gitignore file doesn't need to be in the release file
Sat Oct 13 23:17:41 2007 -0700 H. Peter Anvin 
  * Add .gitignore file so "git status" produces something sane
Sat Oct 13 23:12:46 2007 -0700 H. Peter Anvin 
  * autoconf: drop AC_USE_SYSTEM_EXTENSIONS to support autoconf 2.59
Sat Oct 13 07:09:22 2007 -0700 Keith Kanios 
  * Fix 32-bit types in preproc.c and eval.c
Thu Oct 11 20:32:33 2007 -0700 Charles Crayne 
  * Must define types before using them
Thu Oct 11 13:42:09 2007 -0700 H. Peter Anvin 
  * preproc.c: move smacro define/undef to separate functions
Thu Oct 11 13:38:38 2007 -0700 H. Peter Anvin 
  * preproc.c: PP_DEFINE and PP_XDEFINE are case-sensitive
Thu Oct 11 12:52:03 2007 -0700 H. Peter Anvin 
  * preproc.c: normalize the handling of case sensitivity
Thu Oct 11 12:51:06 2007 -0700 H. Peter Anvin 
  * Define macros necessary for <inttypes.h> on C++
Thu Oct 11 10:12:58 2007 -0700 H. Peter Anvin 
  * More "bool" fixes
Thu Oct 11 10:11:57 2007 -0700 H. Peter Anvin 
  * preproc.c: allow 64-bit repeat counts
Thu Oct 11 10:06:19 2007 -0700 H. Peter Anvin 
  * preproc.c: For an SMacro, in_progress really is a boolean (no %rep)
Thu Oct 11 00:05:57 2007 -0700 H. Peter Anvin 
  * Additional uses of bool and enum
Thu Oct 11 00:05:57 2007 -0700 H. Peter Anvin 
  * preproc.c: MMacro.in_progress is not a boolean
Wed Oct 10 18:07:51 2007 -0700 H. Peter Anvin 
  * saa_fread/fwrite: when seeking, must set [rw]ptr as well
Wed Oct 10 14:58:45 2007 -0700 H. Peter Anvin 
  * Use the compiler-provided booleans if available, otherwise emulate
Wed Oct 10 14:55:14 2007 -0700 H. Peter Anvin 
  * owlinux.mak: don't clean things we won't be able to
Wed Oct 10 14:29:53 2007 -0700 H. Peter Anvin 
  * configure.in: looks like we need autoconf 2.61 :(
Wed Oct 10 14:06:59 2007 -0700 H. Peter Anvin 
  * Create option -Ox to tell NASM to do unlimited passes
Mon Oct 8 19:26:57 2007 -0700 H. Peter Anvin 
  * Revert "floatb.asm: fix broken testcase"
Mon Oct 8 18:39:24 2007 -0700 H. Peter Anvin 
  * floatb.asm: fix broken testcase
Mon Oct 8 12:41:00 2007 -0700 H. Peter Anvin 
  * saa_rstruct: fix overrun check
Mon Oct 8 12:12:23 2007 -0700 H. Peter Anvin 
  * Add Frank's floattest.asm test file
Sun Oct 7 21:13:14 2007 -0700 H. Peter Anvin 
  * saa_fpwrite: initializing "len" should be part of the loop
Sun Oct 7 18:46:57 2007 -0700 Charles Crayne 
  * Fix infinite loop in function saa_fpwrite
Fri Oct 5 17:44:16 2007 -0700 H. Peter Anvin 
  * zerobyte.asm: use a real instruction to avoid confusing ndisasm
Fri Oct 5 17:42:31 2007 -0700 H. Peter Anvin 
  * zerobyte.asm: add test cases for non-initial \170 uses
Fri Oct 5 17:29:01 2007 -0700 H. Peter Anvin 
  * Check in the proper zerobyte test
Fri Oct 5 17:04:32 2007 -0700 H. Peter Anvin 
  * Emit REX prefix before literal zero (\170)
Fri Oct 5 17:01:15 2007 -0700 H. Peter Anvin 
  * LICENSE: Break long line
Fri Oct 5 14:36:03 2007 -0700 H. Peter Anvin 
  * Add test for problematic floats
Thu Oct 4 23:51:08 2007 -0700 H. Peter Anvin 
  * floatx.asm: add Inf and NaN to the boundary condition tests
Thu Oct 4 23:09:19 2007 -0700 H. Peter Anvin 
  * floatx.asm: add specific tests for exponent boundary conditions
Thu Oct 4 22:51:08 2007 -0700 H. Peter Anvin 
  * float.c: correct the exponent
Thu Oct 4 15:18:23 2007 -0700 H. Peter Anvin 
  * Additional rules in test/Makefile
Thu Oct 4 13:42:56 2007 -0700 H. Peter Anvin 
  * Rewrite the handling of SAA's to allow random access
Wed Oct 3 21:30:57 2007 -0700 H. Peter Anvin 
  * Change cloc_t to struct location, and reorder the members
Wed Oct 3 21:24:51 2007 -0700 H. Peter Anvin 
  * BR 1352920: change loc_t -> cloc_t
Wed Oct 3 21:22:16 2007 -0700 H. Peter Anvin 
  * BR 1352920: Handle upper case %line
Wed Oct 3 17:40:12 2007 -0700 H. Peter Anvin 
  * Use autoconf to request feature macros
Tue Oct 2 22:04:15 2007 -0700 H. Peter Anvin 
  * preproc.c: constipation
Tue Oct 2 21:57:27 2007 -0700 H. Peter Anvin 
  * make alldeps
Tue Oct 2 21:53:51 2007 -0700 H. Peter Anvin 
  * Portability fixes
Tue Oct 2 21:13:18 2007 -0700 H. Peter Anvin 
  * Run "make alldeps".
Tue Oct 2 17:40:00 2007 -0700 H. Peter Anvin 
  * Use the crc64 we already use as the perfect hash function prehash
Tue Oct 2 15:09:33 2007 -0700 H. Peter Anvin 
  * insns.dat: add systematic names for the hinting NOPs (0F18-0F1F)
Mon Oct 1 11:28:32 2007 -0700 H. Peter Anvin 
  * Unspecified files are null strings, not null pointers
Mon Oct 1 11:26:31 2007 -0700 H. Peter Anvin 
  * Check for the most basic filename overlaps
Sun Sep 30 22:15:36 2007 -0700 Charles Crayne 
  * modified:   nasm.1 to add newer command line options
Fri Sep 28 21:27:41 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Fri Sep 28 20:17:12 2007 -0700 H. Peter Anvin 
  * configure.in: AC_SUBST_FILE should have been AC_SUBST
Fri Sep 28 17:17:20 2007 -0700 H. Peter Anvin 
  * Unbreak relative references to immediate addresses
Fri Sep 28 15:16:47 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Fri Sep 28 12:01:55 2007 -0700 H. Peter Anvin 
  * lib/vsnprintf.c: correct boundary conditions
Fri Sep 28 10:50:20 2007 -0700 H. Peter Anvin 
  * Add substitutes for snprintf() and vsnprintf()
Fri Sep 28 02:03:41 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Thu Sep 27 21:35:04 2007 -0700 H. Peter Anvin 
  * Exclude config.h from the dependency list for the canned makefiles
Thu Sep 27 21:12:17 2007 -0700 H. Peter Anvin 
  * version.pl: Add support for daily snapshot releases
Thu Sep 27 19:46:55 2007 -0700 H. Peter Anvin 
  * Add Makefile for Linux -> DOS, Win32, OS/2 using OpenWatcom
Wed Sep 26 19:57:07 2007 -0700 H. Peter Anvin 
  * Add Makefile for OpenWatcom (DOS, OS/2 or Win32 output)
Wed Sep 26 17:00:18 2007 -0700 H. Peter Anvin 
  * Test for various addressing modes in 64-bit mode
Wed Sep 26 15:19:28 2007 -0700 H. Peter Anvin 
  * nasm option reshuffling, -E -> -Z
Tue Sep 25 23:57:21 2007 -0400 Frank Kotler 
  * Version 0.99.04
Tue Sep 25 20:36:45 2007 -0700 H. Peter Anvin 
  * nasmdoc: corrections on 64-bit immediates/displacements
Tue Sep 25 16:02:21 2007 -0700 H. Peter Anvin 
  * nasmdoc: shorten lines which are too long
Tue Sep 25 16:01:07 2007 -0700 H. Peter Anvin 
  * Document NASM behaviour for 64-bit immediates and displacements
Tue Sep 25 15:44:40 2007 -0700 H. Peter Anvin 
  * test/movimm.asm: add optimizable forms
Tue Sep 25 15:41:19 2007 -0700 H. Peter Anvin 
  * assemble.c: clean up whitespace
Tue Sep 25 15:40:36 2007 -0700 H. Peter Anvin 
  * Correct the handling of "MOV" with immediate in 64-bit mode
Tue Sep 25 15:39:42 2007 -0700 H. Peter Anvin 
  * Test of immediate handling on 64-bit mode
Tue Sep 25 14:27:34 2007 -0700 H. Peter Anvin 
  * Add nasm_zalloc() to nasmlib.c
Tue Sep 25 14:26:03 2007 -0700 H. Peter Anvin 
  * Fix BR 1490407: size of the second operand of LAR/LSL
Tue Sep 25 14:11:29 2007 -0700 H. Peter Anvin 
  * Fix BR 1490407: size of the second operand of LAR/LSL
Tue Sep 25 13:34:55 2007 -0700 H. Peter Anvin 
  * Makefile.in: make "make install" create directories
Tue Sep 25 08:48:37 2007 -0700 H. Peter Anvin 
  * Fix BR 1445441: uninitialized use of "error_file"
Mon Sep 24 21:33:17 2007 -0700 H. Peter Anvin 
  * preproc.c: fix the loop in %undef
Mon Sep 24 20:53:48 2007 -0700 H. Peter Anvin 
  * float.c: clear off uninitialized warning
Mon Sep 24 17:02:41 2007 -0700 H. Peter Anvin 
  * outcoff: set the "virtual size field" to zero (BR 1351586)
Mon Sep 24 15:56:02 2007 -0700 H. Peter Anvin 
  * insns.dat: SMINT - mark ND, DMINT - fix opcode
Mon Sep 24 15:55:20 2007 -0700 H. Peter Anvin 
  * 0F0F is a 3Dnow! prefix; remove from prefix list
Mon Sep 24 15:48:09 2007 -0700 H. Peter Anvin 
  * Additional compaction missed by script
Mon Sep 24 15:42:53 2007 -0700 H. Peter Anvin 
  * insns.dat: machine-generated compaction mmx/xmmreg,mem -> mmx/xmmrm
Mon Sep 24 13:54:00 2007 -0700 H. Peter Anvin 
  * nasmdoc: grammar fix
Mon Sep 24 13:44:02 2007 -0700 H. Peter Anvin 
  * nasmdoc: remove stray periods
Mon Sep 24 13:42:09 2007 -0700 H. Peter Anvin 
  * test/Makefile: make a bit more useful
Mon Sep 24 13:41:58 2007 -0700 H. Peter Anvin 
  * Implement the -MG option (SF RFE 1564264)
Mon Sep 24 12:52:09 2007 -0700 H. Peter Anvin 
  * nasmdoc: clarify __float*__ example
Mon Sep 24 12:44:38 2007 -0700 H. Peter Anvin 
  * nasmdoc: document the __float*__ operators
Mon Sep 24 12:30:54 2007 -0700 H. Peter Anvin 
  * Support __float*__ for floating-point numbers in expressions
Mon Sep 24 10:51:07 2007 -0700 H. Peter Anvin 
  * eval.c: replace sequence of ifs with switch
Mon Sep 24 10:50:23 2007 -0700 H. Peter Anvin 
  * tokhash: allow a bit smarter pattern matching
Sat Sep 22 22:35:28 2007 -0700 H. Peter Anvin 
  * Implement INVLPGA according to the documentation
Sat Sep 22 22:02:34 2007 -0700 H. Peter Anvin 
  * Reformat insns.dat to uniform column width
Sat Sep 22 21:50:03 2007 -0700 H. Peter Anvin 
  * Simple test for 0x67 prefixes
Sat Sep 22 21:49:51 2007 -0700 H. Peter Anvin 
  * Auto-generate 0x67 prefixes without the need for \30x codes
Sat Sep 22 21:47:13 2007 -0700 H. Peter Anvin 
  * Make test/Makefile a bit more useful
Sat Sep 22 21:29:41 2007 -0700 H. Peter Anvin 
  * Add TY_OWORD for "DO" output
Sat Sep 22 19:52:11 2007 -0700 H. Peter Anvin 
  * LDDQU needs \301 (BR 1103549)
Sat Sep 22 19:51:13 2007 -0700 H. Peter Anvin 
  * RDTSCP and INVLPGA aren't 64-bit specific
Sat Sep 22 19:40:37 2007 -0700 H. Peter Anvin 
  * Cyrix GX1 instructions: BBx_RESET, CPU_READ, CPU_WRITE
Sat Sep 22 19:28:14 2007 -0700 H. Peter Anvin 
  * Centaur XSHA1, XSHA256, MONTMUL
Sat Sep 22 19:20:56 2007 -0700 H. Peter Anvin 
  * Implement Centaur's XCRYPT instructions
Sat Sep 22 19:13:05 2007 -0700 H. Peter Anvin 
  * Add Geode LX (AMD's Cyrix-derived core) instructions
Sat Sep 22 19:05:11 2007 -0700 H. Peter Anvin 
  * Add the GETSEC instruction for Intel SMX
Sat Sep 22 18:59:18 2007 -0700 H. Peter Anvin 
  * Add the AMD SSE4a and LZCNT instructions
Sat Sep 22 18:23:20 2007 -0700 H. Peter Anvin 
  * Tag UMOV as ND (no disassembly) to avoid collision
Sat Sep 22 18:20:49 2007 -0700 H. Peter Anvin 
  * Disallow optimizing by less than 5 passes.
Sat Sep 22 17:45:45 2007 -0700 H. Peter Anvin 
  * BR 1783117: Document that %+ needs a space after it, and fix crash
Sat Sep 22 16:44:56 2007 -0700 H. Peter Anvin 
  * nasm.spec.in: minor fixes
Sat Sep 22 16:38:25 2007 -0700 H. Peter Anvin 
  * release script: handle stricter CLI parsing for "git tag"
Sat Sep 22 16:35:11 2007 -0700 H. Peter Anvin 
  * Update nasm.spec.in and make it handle rc releases
Sat Sep 22 16:19:19 2007 -0700 H. Peter Anvin 
  * version.pl: support version numbers of the form X.Y[.Z]rcW
Thu Sep 20 21:33:43 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Thu Sep 20 21:12:33 2007 -0700 Charles Crayne 
  * 	modified:   misc/release to fix bug in removing .git
Wed Sep 19 21:41:43 2007 -0700 H. Peter Anvin 
  * Merge branch 'master' of git+ssh://repo.or.cz/srv/git/nasm
Wed Sep 19 21:41:27 2007 -0700 H. Peter Anvin 
  * Update manual pages
Wed Sep 19 21:41:02 2007 -0700 H. Peter Anvin 
  * Remove limit on number of sync points
Wed Sep 19 21:40:37 2007 -0700 H. Peter Anvin 
  * Make nasm_malloc() et al available from inside ndisasm
Wed Sep 19 21:07:32 2007 -0400 Frank Kotler 
  * Version 0.99.03
Wed Sep 19 21:06:59 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Wed Sep 19 16:22:03 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/sse5'
Wed Sep 19 16:15:22 2007 -0700 H. Peter Anvin 
  * test/Makefile: make a bit more useful
Tue Sep 18 22:54:40 2007 -0700 H. Peter Anvin 
  * Slightly optimize the interface to nasm_token_hash()
Wed Sep 19 01:34:55 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Tue Sep 18 22:23:42 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Tue Sep 18 22:22:49 2007 -0700 H. Peter Anvin 
  * elf64: fix 32-bit truncations
Tue Sep 18 22:08:04 2007 -0700 H. Peter Anvin 
  * Document Infinity and NaN
Tue Sep 18 21:55:56 2007 -0700 H. Peter Anvin 
  * Support generating NaNs and infinities
Tue Sep 18 19:12:26 2007 -0700 H. Peter Anvin 
  * Update documentation
Tue Sep 18 18:37:36 2007 -0700 H. Peter Anvin 
  * Simple test for hexadecimal floating-point numbers
Tue Sep 18 18:33:17 2007 -0700 H. Peter Anvin 
  * Fix error-reporting in hexadecimal floating-point numbers
Tue Sep 18 18:31:26 2007 -0700 H. Peter Anvin 
  * Support C99-style hexadecimal floating point.
Tue Sep 18 17:50:34 2007 -0700 H. Peter Anvin 
  * Unify all standard IEEE floating-point formats; add 128-bit
Tue Sep 18 17:49:09 2007 -0700 H. Peter Anvin 
  * Fix handling of DO; support unary + for floating-point numbers
Tue Sep 18 16:39:03 2007 -0700 H. Peter Anvin 
  * Support 16-bit IEEE floating point; used in SSE5
Tue Sep 18 15:43:40 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Tue Sep 18 15:43:08 2007 -0700 H. Peter Anvin 
  * Add NOP with argument to the instruction list
Tue Sep 18 15:24:38 2007 -0700 H. Peter Anvin 
  * Remove 0FC2 from list of instruction prefixes
Tue Sep 18 15:08:20 2007 -0700 H. Peter Anvin 
  * Speed up the disassembler by allowing prefixed instruction tables
Tue Sep 18 13:45:12 2007 -0700 H. Peter Anvin 
  * Document oword, do and reso
Tue Sep 18 13:01:32 2007 -0700 H. Peter Anvin 
  * Implement "oword" (128 bits) as a first-class size
Tue Sep 18 12:38:07 2007 -0700 H. Peter Anvin 
  * Change the token prehash function for better convergence
Tue Sep 18 12:23:21 2007 -0700 H. Peter Anvin 
  * SSE5 instruction table
Tue Sep 18 02:06:09 2007 -0400 Frank Kotler 
  * add "const" to output/outdbg.c
Mon Sep 17 18:45:44 2007 -0700 H. Peter Anvin 
  * Disassembler support for SSE5 instructions
Mon Sep 17 17:27:46 2007 -0700 H. Peter Anvin 
  * insns.dat: All SSE5 instructions are AMD
Mon Sep 17 17:25:27 2007 -0700 H. Peter Anvin 
  * Actually generate SSE5 instructions
Mon Sep 17 16:55:04 2007 -0700 H. Peter Anvin 
  * Initial support for generating DREX suffixes
Mon Sep 17 16:31:33 2007 -0700 H. Peter Anvin 
  * Fix a few instances of missing renumbers
Mon Sep 17 16:20:45 2007 -0700 H. Peter Anvin 
  * Enable IF_AR3
Mon Sep 17 15:49:53 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Mon Sep 17 15:49:30 2007 -0700 H. Peter Anvin 
  * Initial support for four arguments per instruction
Mon Sep 17 15:48:32 2007 -0700 H. Peter Anvin 
  * CLFLUSH: Neither an x64 instruction nor AMD
Mon Sep 17 13:56:26 2007 -0700 H. Peter Anvin 
  * Sort dependency lists
Mon Sep 17 13:53:14 2007 -0700 H. Peter Anvin 
  * Cleaner way to handle MSVC's _snprintf() underscore damage
Mon Sep 17 13:19:25 2007 -0700 H. Peter Anvin 
  * test/r13.asm: test special-casing of rbp and r13 in 64-bit mode
Mon Sep 17 13:03:33 2007 -0700 H. Peter Anvin 
  * Additional documentation for 64-bit programming
Sun Sep 16 22:27:07 2007 -0700 H. Peter Anvin 
  * INSTALL: MSVC++ compilation instructions
Sun Sep 16 22:17:29 2007 -0700 H. Peter Anvin 
  * make alldeps: change Mkfiles/Makefile.* to Mkfiles/*.mak
Sun Sep 16 22:16:24 2007 -0700 H. Peter Anvin 
  * Fix Makefile for MSVC++ 2005, delete obsolete Makefiles
Sun Sep 16 22:15:34 2007 -0700 H. Peter Anvin 
  * Minor fixes needed to compile with MSVC++ 2005
Sun Sep 16 18:35:02 2007 -0700 H. Peter Anvin 
  * Run "make alldeps"
Sun Sep 16 18:04:57 2007 -0700 H. Peter Anvin 
  * Switch the preprocessor over to using the hash table library
Sun Sep 16 17:53:17 2007 -0700 H. Peter Anvin 
  * Fix the handling of local labels
Fri Sep 14 18:36:01 2007 -0700 H. Peter Anvin 
  * preproc.c: remove unnecessary int64_t
Fri Sep 14 18:03:29 2007 -0700 H. Peter Anvin 
  * Use the new hash table function library to store labels
Fri Sep 14 09:24:38 2007 -0700 H. Peter Anvin 
  * Define a proper hash table library
Thu Sep 13 18:13:20 2007 -0700 H. Peter Anvin 
  * Simple performance benchmarks: label, macro and token lookups
Thu Sep 13 12:25:32 2007 -0700 H. Peter Anvin 
  * release script: fix final cleanup
Thu Sep 13 12:22:00 2007 -0700 H. Peter Anvin 
  * Modify release script for a git-centric world
Thu Sep 13 11:06:42 2007 -0700 H. Peter Anvin 
  * pptok.c: don't insist on C99 compiler behaviour
Wed Sep 12 22:02:06 2007 -0700 H. Peter Anvin 
  * Fix literal F2 and F3 prefixes
Wed Sep 12 21:58:51 2007 -0700 H. Peter Anvin 
  * Add (untested!) SSSE3, SSE4.1, SSE4.2 instructions
Wed Sep 12 21:06:36 2007 -0700 H. Peter Anvin 
  * Add support for Tejas New Instructions (SSSE3)
Wed Sep 12 21:05:06 2007 -0700 H. Peter Anvin 
  * Remove $Id$ tags (useless with git)
Wed Sep 12 21:04:58 2007 -0700 H. Peter Anvin 
  * Use rm32 operands for VMREAD/VMWRITE
Wed Sep 12 21:04:51 2007 -0700 H. Peter Anvin 
  * Macros for SSSE3/SSE4 instruction sets
Wed Sep 12 21:04:39 2007 -0700 H. Peter Anvin 
  * Support r/m operands for non-integer types
Wed Sep 12 20:27:41 2007 -0700 H. Peter Anvin 
  * Use enumerations where practical to ease debugging
Wed Sep 12 17:02:55 2007 +0000 H. Peter Anvin 
  * pptok.c: quick-and-dirty downcasing during prehashing
Wed Sep 12 16:55:57 2007 +0000 H. Peter Anvin 
  * phash: Tell the user when the graph is OK
Wed Sep 12 05:18:20 2007 +0000 H. Peter Anvin 
  * pptok.c: handle holes in the pp_directives array
Wed Sep 12 04:20:08 2007 +0000 H. Peter Anvin 
  * preproc.c: adjust whitespace
Wed Sep 12 04:18:37 2007 +0000 H. Peter Anvin 
  * More automation in the preprocessor conditionals handling
Wed Sep 12 02:13:39 2007 +0000 H. Peter Anvin 
  * pptok.c: fix spacing
Wed Sep 12 02:12:07 2007 +0000 H. Peter Anvin 
  * Generate automatically correct tests for %if and %elif
Wed Sep 12 01:34:19 2007 +0000 H. Peter Anvin 
  * Run "make alldeps"; add dependencies missing from the previous checkin
Wed Sep 12 01:29:43 2007 +0000 H. Peter Anvin 
  * Use a perfect hash to look up preprocessor directives
Wed Sep 12 01:27:53 2007 +0000 H. Peter Anvin 
  * phash: Be a bit more aggressive about trying to make a small hash
Wed Sep 12 00:22:29 2007 +0000 H. Peter Anvin 
  * Add RCXZ as a known preprocessor condition
Tue Sep 11 23:57:23 2007 +0000 H. Peter Anvin 
  * doc: add some cross-references
Tue Sep 11 23:52:01 2007 +0000 H. Peter Anvin 
  * Feeble attempt at updating the documentation; remove Appendix B
Tue Sep 11 22:44:03 2007 +0000 H. Peter Anvin 
  * Handle instructions which can have both REX.W and OSP
Tue Sep 11 22:14:18 2007 +0000 H. Peter Anvin 
  * Use enums to make debugging easier
Tue Sep 11 22:13:17 2007 +0000 H. Peter Anvin 
  * ndisasm: handle \366 codes, prefer unprefixed instructions
Tue Sep 11 22:00:34 2007 +0000 H. Peter Anvin 
  * Simplify tokens.dat slightly
Tue Sep 11 04:26:44 2007 +0000 H. Peter Anvin 
  * Quiet gcc warning about uninitialized variables
Tue Sep 11 04:16:57 2007 +0000 H. Peter Anvin 
  * Make the big instruction arrays "const"
Mon Sep 10 23:32:05 2007 +0000 H. Peter Anvin 
  * Use an actual enum for the opcode
Mon Sep 10 23:30:21 2007 +0000 H. Peter Anvin 
  * Fix order of token arguments
Mon Sep 10 18:59:26 2007 +0000 H. Peter Anvin 
  * assemble.c: correct special handing of ESP/RSP
Mon Sep 10 18:59:01 2007 +0000 H. Peter Anvin 
  * tokhash: correct duplicate-token test
Mon Sep 10 18:58:40 2007 +0000 H. Peter Anvin 
  * tokhash: adjust table types to reduce size
Mon Sep 10 18:55:52 2007 +0000 H. Peter Anvin 
  * Fix the MMXREG and XMMREG flags definitions.
Wed Sep 5 06:48:38 2007 +0000 H. Peter Anvin 
  * nasm.spec.in: Copyright -> License
Wed Sep 5 06:40:51 2007 +0000 H. Peter Anvin 
  * Fix "make tar"; useful for RPM testing
Wed Sep 5 06:24:43 2007 +0000 H. Peter Anvin 
  * Remove obsolete Serial: construct; we shouldn't need it anyway.
Tue Sep 4 01:29:43 2007 +0000 Chuck Crayne 
  * Provide 64-bit support for ORG directive
Sun Sep 2 16:37:03 2007 +0000 H. Peter Anvin 
  * Fix some MMX/SSE irregularities which interact with the 64-bit support
Sun Sep 2 14:46:00 2007 +0000 H. Peter Anvin 
  * phash.ph: yet another attempt at getting Perl to behave, arithmetically
Sun Sep 2 06:23:29 2007 +0000 H. Peter Anvin 
  * Simple 64-bit org test
Sun Sep 2 06:20:15 2007 +0000 H. Peter Anvin 
  * phash.ph: remove some stale code
Sun Sep 2 01:00:34 2007 +0000 Chuck Crayne 
  * Force use of integer values for generating hash keys.
Fri Aug 31 18:10:23 2007 +0000 H. Peter Anvin 
  * phash: don't rely on the build platform Perl version of rand()
Fri Aug 31 07:31:51 2007 +0000 H. Peter Anvin 
  * tokhash.pl: formatting changes for readability
Fri Aug 31 07:23:31 2007 +0000 H. Peter Anvin 
  * tokhash: Speed up the rejection of unhashed values
Fri Aug 31 06:06:17 2007 +0000 H. Peter Anvin 
  * tokhash.pl: "ix" should have the same width as the "hash" arrays
Fri Aug 31 00:28:35 2007 +0000 H. Peter Anvin 
  * Add "do not edit" comment to tokhash.c
Fri Aug 31 00:23:40 2007 +0000 H. Peter Anvin 
  * Make the token hash a bit smaller by using 16-bit hash tables
Fri Aug 31 00:16:10 2007 +0000 H. Peter Anvin 
  * Minor cleanup; remove duplication of names.c
Thu Aug 30 23:42:39 2007 +0000 H. Peter Anvin 
  * phash.ph: use a bipartite graph to reduce the storage requirements
Thu Aug 30 22:35:34 2007 +0000 H. Peter Anvin 
  * Finishing touches on perfect hash tokenizer; actually turn the thing on
Thu Aug 30 21:50:20 2007 +0000 H. Peter Anvin 
  * Makefile rule for tokhash.c
Thu Aug 30 21:47:46 2007 +0000 H. Peter Anvin 
  * tokens.dat: Data file containing alphanumeric tokens not in other .dats
Thu Aug 30 21:45:56 2007 +0000 H. Peter Anvin 
  * Generate a perfect hash for the token parser
Thu Aug 30 21:40:08 2007 +0000 H. Peter Anvin 
  * Fix bugs in repeated suffix handling, which led to missing r8d/r8w/r8d
Thu Aug 30 21:39:37 2007 +0000 H. Peter Anvin 
  * phash.ph: more powerful prehashing
Thu Aug 30 20:15:25 2007 +0000 H. Peter Anvin 
  * Make the perfect hash generator an includable module
Wed Aug 29 20:30:31 2007 +0000 H. Peter Anvin 
  * Correct the logic for recording fs: and gs: overrides.
Wed Aug 29 18:20:19 2007 +0000 H. Peter Anvin 
  * Generate R_X86_64_64 relocations in elf64 output
Wed Aug 29 17:24:03 2007 +0000 H. Peter Anvin 
  * Add README file
Wed Aug 29 17:20:09 2007 +0000 H. Peter Anvin 
  * Create a Perl library directory, and add the Graph module to it
Wed Aug 29 17:05:17 2007 +0000 H. Peter Anvin 
  * Perfect hash generator, as a perl script
Wed Aug 29 16:41:43 2007 +0000 H. Peter Anvin 
  * Use standard macro for the default directive
Wed Aug 29 16:40:26 2007 +0000 H. Peter Anvin 
  * Add standard macro for [default] directive
Wed Aug 29 16:38:47 2007 +0000 H. Peter Anvin 
  * More test cases for rel and abs addressing
Wed Aug 29 16:38:05 2007 +0000 H. Peter Anvin 
  * Add [default] directive
Wed Aug 29 16:25:46 2007 +0000 H. Peter Anvin 
  * nasmlib: add bsii() case-insensitive version of bsi()
Wed Aug 29 15:49:53 2007 +0000 H. Peter Anvin 
  * Add test cases for IP-relative addressing
Wed Aug 29 15:19:19 2007 +0000 H. Peter Anvin 
  * Suppress IP-relative only for fs: and gs: overrides
Tue Aug 28 23:06:00 2007 +0000 H. Peter Anvin 
  * Implement REL/ABS modifiers
Sun Aug 26 05:51:39 2007 +0000 Frank Kotler 
  * attempt to make static makefiles aware of outelf32/outelf64
Sun Aug 26 05:48:54 2007 +0000 Frank Kotler 
  * add nasm_strsep to nasmlib, for output/outmacho.c - strtok doesn't work
Sun Aug 26 05:41:33 2007 +0000 Frank Kotler 
  * remove "#include <unistd.h> from rdoff directory - two places - it annoyed Windows users and seems unneeded
Sun Aug 26 05:10:24 2007 +0000 Frank Kotler 
  * finally commit Mike Frysinger's "elf-visibility" patch
Mon Aug 20 21:03:14 2007 +0000 H. Peter Anvin 
  * regs.pl: handle dashed sequences with suffixes
Mon Aug 20 20:10:04 2007 +0000 H. Peter Anvin 
  * sync.c: change ULONG_MAX to UINT32_MAX
Mon Aug 20 20:09:11 2007 +0000 H. Peter Anvin 
  * Add _MIN and _MAX macros for the fixed-size types.
Mon Aug 20 20:02:17 2007 +0000 H. Peter Anvin 
  * ldrdf: cast output of sizeof() before passing to printf(), to avoid warning.
Sun Aug 19 18:49:26 2007 +0000 Keith Kanios 
  * Fixed RIP address processing ambiguity found by Charles Crayne.
Fri Aug 17 07:37:52 2007 +0000 Keith Kanios 
  * Fixed issues with REX prefix effective address generation. Fixed XMM instruction output.
Fri Aug 17 02:03:10 2007 +0000 Keith Kanios 
  * Changed MMXREG and XMMREG flags to help resolve invalid REX prefix generation for MMX instructions.
Sat Jul 7 02:01:08 2007 +0000 H. Peter Anvin 
  * More int/int32_t confusion
Sat Jul 7 01:59:52 2007 +0000 H. Peter Anvin 
  * regflag() should return int32_t.
Thu Jun 21 19:00:12 2007 +0000 H. Peter Anvin 
  * Detect missing <inttypes.h> and include ersatz version if missing
Thu Jun 21 06:24:23 2007 +0000 H. Peter Anvin 
  * inttypes.h: for older preprocessors, specify L and LL as appropriate
Thu Jun 21 06:20:43 2007 +0000 H. Peter Anvin 
  * inttypes.h: Fix spelling of SHRT_MAX
Thu Jun 21 06:15:42 2007 +0000 H. Peter Anvin 
  * inttypes.h: do a single ersatz <inttypes.h> based on <limits.h>
Sun Jun 3 02:42:41 2007 +0000 Chuck Crayne 
  * Support 32-bit direct addressing in 64-bit mode without base or index regs
Sat Jun 2 02:26:21 2007 +0000 H. Peter Anvin 
  * Fix the [U]INT*_C() creation macros
Sat Jun 2 00:05:35 2007 +0000 H. Peter Anvin 
  * For platforms that don't have them, provide <inttypes.h> for common models.
Wed May 30 22:21:11 2007 +0000 H. Peter Anvin 
  * Fix the handling of the \313 code.
Wed May 30 22:20:01 2007 +0000 H. Peter Anvin 
  * Machine-generated \321->\324 corrections
Wed May 30 21:22:33 2007 +0000 Frank Kotler 
  * update "version" to 0.99.02
Wed May 30 20:30:15 2007 +0000 H. Peter Anvin 
  * Correct the generation of 67 prefixes.
Wed May 30 18:30:18 2007 +0000 H. Peter Anvin 
  * Update dependencies.
Wed May 30 16:34:29 2007 +0000 Frank Kotler 
  * update cvs server name in misc/release script
Wed May 30 04:28:50 2007 +0000 H. Peter Anvin 
  * Avoid magic values; we have more than 124 registers now
Wed May 30 04:27:58 2007 +0000 H. Peter Anvin 
  * Remove bogus redundant tests
Wed May 30 03:44:50 2007 +0000 H. Peter Anvin 
  * More \321 -> \324
Wed May 30 03:44:02 2007 +0000 H. Peter Anvin 
  * Remove bogus check for 64-bitness
Wed May 30 03:25:21 2007 +0000 H. Peter Anvin 
  * Get rid of magic open-coded "register numbers"
Wed May 30 02:48:51 2007 +0000 H. Peter Anvin 
  * MOV reg64,reg64 takes \324 (64 bit with REX) not \321 (32 bit)
Wed May 30 00:18:26 2007 +0000 H. Peter Anvin 
  * Rename REGNORM to REG_EA
Wed May 30 00:15:25 2007 +0000 H. Peter Anvin 
  * More instruction flag surgery
Wed May 30 00:05:00 2007 +0000 H. Peter Anvin 
  * More cleanup of operand flags/register classes
Tue May 29 23:57:12 2007 +0000 H. Peter Anvin 
  * Clean up the existing operand flag definitions, and document
Tue May 29 21:44:55 2007 +0000 H. Peter Anvin 
  * Run "make alldeps"
Thu May 24 22:33:07 2007 +0000 Frank Kotler 
  * update version number to 0.99.01
Tue May 15 04:33:43 2007 +0000 H. Peter Anvin 
  * regs.dat: fix comment
Fri May 4 18:47:16 2007 +0000 H. Peter Anvin 
  * 16-bit relocations are standard in ELF64 (at my request, incidentally)
Fri May 4 02:16:08 2007 +0000 Chuck Crayne 
  * Addition of elf32 and elf64 output formats.
Wed May 2 04:21:26 2007 +0000 Chuck Crayne 
  * Allow '!' to be used in expressions with same meaning as in C.
Wed May 2 01:59:16 2007 +0000 Chuck Crayne 
  * Add %IFN and %ELIFN as per RFE #786286
Mon Apr 30 22:26:58 2007 +0000 Chuck Crayne 
  * Accept responsibility for support of outelf64.c
Sun Apr 29 20:57:53 2007 +0000 Chuck Crayne 
  * Clarify comments about relocation entries.
Sun Apr 29 00:28:24 2007 +0000 Chuck Crayne 
  * Allow ELF32 to be invoked either as -f elf or -f elf32
Sat Apr 28 22:18:04 2007 +0000 Chuck Crayne 
  * Eliminate shift count warnings when building on 32-bit systems
Sat Apr 28 06:18:48 2007 +0000 Chuck Crayne 
  * Initial support for ELF64
Wed Apr 18 02:27:18 2007 +0000 H. Peter Anvin 
  * Fix the handling of \324 for computing the length
Wed Apr 18 02:24:34 2007 +0000 Keith Kanios 
  * Fixed RDF/2 to comply with "maxbits" use.
Tue Apr 17 20:23:11 2007 +0000 H. Peter Anvin 
  * Handle "LOCK as REX.R" for MOV CRx; fix warning for invalid 64-bit regs
Mon Apr 16 18:16:46 2007 +0000 Keith Kanios 
  * MEM_OFFSET Instructions Fixed.
Mon Apr 16 15:46:46 2007 +0000 Keith Kanios 
  * Fixed 64-bit Mode Segment Selection.
Mon Apr 16 14:31:54 2007 +0000 Keith Kanios 
  * Fixed distinction between [LOCAL]SYMBOL/IMMEDIATE for RIP-relative addressing.
Mon Apr 16 14:05:01 2007 +0000 Keith Kanios 
  * Fixed long mode MEM_OFFS issue.
Mon Apr 16 13:54:49 2007 +0000 Keith Kanios 
  * Filled in all RIP Register Flags.
Mon Apr 16 05:26:29 2007 +0000 H. Peter Anvin 
  * More \321 -> \324 for 64-bit instructions
Mon Apr 16 04:56:06 2007 +0000 Keith Kanios 
  * Fixed 64-bit offset generation.
Mon Apr 16 02:39:56 2007 +0000 H. Peter Anvin 
  * More 64-bit ndisasm fixes.
Mon Apr 16 02:02:06 2007 +0000 H. Peter Anvin 
  * Fixes for 64-bit ndisasm.
Mon Apr 16 01:21:29 2007 +0000 H. Peter Anvin 
  * Use + instead of * for extension; it feels cleaner with the new meaning.
Mon Apr 16 01:18:30 2007 +0000 H. Peter Anvin 
  * Initial 64-bit support for ndisasm.  Still a work in progress.
Sun Apr 15 23:12:17 2007 +0000 H. Peter Anvin 
  * Clean up the 64-bitification of regs.dat for 64-bit ndisasm support
Sun Apr 15 23:10:26 2007 +0000 H. Peter Anvin 
  * Remove @GCCFLAGS@
Sun Apr 15 23:09:23 2007 +0000 H. Peter Anvin 
  * CR8 is not special in any way as far as the assembler is concerned.
Sun Apr 15 23:03:28 2007 +0000 H. Peter Anvin Sat Nov 24 16:31:48 2007 -0800 H. Peter Anvin 
  * Typo fixes in documentation
Tue Nov 20 23:37:46 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc3
Tue Nov 20 21:45:16 2007 -0800 H. Peter Anvin 
  * Unbreak CMPSW/CMPSD/CMPSQ
Tue Nov 20 13:23:34 2007 -0800 H. Peter Anvin 
  * Merge branch 'master' of git+ssh://repo.or.cz/srv/git/nasm
Tue Nov 20 13:22:58 2007 -0800 H. Peter Anvin 
  * ndisasm: handle the case of "no more sync points"
Mon Nov 19 23:09:31 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc2
Mon Nov 19 23:09:24 2007 -0800 H. Peter Anvin 
  * tag-release: a simple script to tag the repository for release
Mon Nov 19 13:14:59 2007 -0800 H. Peter Anvin 
  * Slightly faster implementation of the deadman counter
Mon Nov 19 12:26:50 2007 -0800 H. Peter Anvin 
  * BR 812417: Deadman counter for macro expansion
Mon Nov 19 12:02:38 2007 -0800 H. Peter Anvin 
  * BR 877583: Fix RAA memory leak
Mon Nov 19 11:53:18 2007 -0800 H. Peter Anvin 
  * BR 863173: Fix offsets of TIMES/INCBIN in list file
Mon Nov 19 11:45:40 2007 -0800 H. Peter Anvin 
  * BR 1834731: Remove redundant error messages for no input file
Mon Nov 19 11:44:05 2007 -0800 H. Peter Anvin 
  * insns.pl: remove debugging output
Sun Nov 18 22:18:09 2007 -0800 H. Peter Anvin 
  * Clean up remaining build warnings
Sun Nov 18 21:55:26 2007 -0800 H. Peter Anvin 
  * BR 1834292: Fix multiple disassembler bugs
Sun Nov 18 12:01:05 2007 -0800 H. Peter Anvin 
  * BR 1834056: Remove warnings in rdoff/rdoff.c
Sun Nov 18 11:55:10 2007 -0800 H. Peter Anvin 
  * BR 1091926: Bounds checking for command line parsing
Sat Nov 17 21:21:18 2007 -0800 H. Peter Anvin 
  * Remove FIXME from documentation
Sat Nov 17 21:08:33 2007 -0800 Charles Crayne 
  * Check in Keith's Fixes
Sat Nov 17 14:35:19 2007 -0800 H. Peter Anvin 
  * Make the definition for float_const() match the prototype
Fri Nov 16 00:03:02 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc1
Thu Nov 15 17:12:29 2007 -0800 H. Peter Anvin 
  * Clean up the command-line parsing; make -w/-W match others
Thu Nov 15 14:38:19 2007 -0800 H. Peter Anvin 
  * BR 993895: Support zero-operand floating-point insn
Thu Nov 15 10:25:52 2007 -0800 H. Peter Anvin 
  * Remove some vestiges of "native" RESW/RESD support
Thu Nov 15 10:24:55 2007 -0800 H. Peter Anvin 
  * outbin.c: fix one missed change from type -> size
Tue Nov 13 19:52:54 2007 -0800 root 
  * Support setting OSABI value in ELF header.
Tue Nov 13 11:34:34 2007 -0800 H. Peter Anvin 
  * Enable a few warnings by default; clean up warning descriptions
Tue Nov 13 11:31:15 2007 -0800 H. Peter Anvin 
  * Add gcc-style -W/-Wno- warning selections; -Wall; -Werror
Tue Nov 13 10:37:23 2007 -0800 H. Peter Anvin 
  * Clean up the fwrite*() function definitions somewhat
Tue Nov 13 09:49:51 2007 -0800 H. Peter Anvin 
  * Cast 64-bit switch expressions to (int) to keep OpenWatcom happy
Tue Nov 13 09:46:38 2007 -0800 H. Peter Anvin 
  * x86-host-specific performance improvement
Tue Nov 13 09:37:59 2007 -0800 H. Peter Anvin 
  * Address data is int64_t; simplify writing an address object
Mon Nov 12 23:00:31 2007 -0800 H. Peter Anvin 
  * ndisasm: factor out the common operand-extraction code
Mon Nov 12 22:56:07 2007 -0800 H. Peter Anvin 
  * Un-special-case "xchg rax,rax"; disassemble o64
Mon Nov 12 22:11:46 2007 -0800 H. Peter Anvin 
  * BR 1709392: Fix alignment handling in Mach-O formatSat Nov 24 16:31:48 2007 -0800 H. Peter Anvin 
  * Typo fixes in documentation
Tue Nov 20 23:37:46 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc3
Tue Nov 20 21:45:16 2007 -0800 H. Peter Anvin 
  * Unbreak CMPSW/CMPSD/CMPSQ
Tue Nov 20 13:23:34 2007 -0800 H. Peter Anvin 
  * Merge branch 'master' of git+ssh://repo.or.cz/srv/git/nasm
Tue Nov 20 13:22:58 2007 -0800 H. Peter Anvin 
  * ndisasm: handle the case of "no more sync points"
Mon Nov 19 23:09:31 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc2
Mon Nov 19 23:09:24 2007 -0800 H. Peter Anvin 
  * tag-release: a simple script to tag the repository for release
Mon Nov 19 13:14:59 2007 -0800 H. Peter Anvin 
  * Slightly faster implementation of the deadman counter
Mon Nov 19 12:26:50 2007 -0800 H. Peter Anvin 
  * BR 812417: Deadman counter for macro expansion
Mon Nov 19 12:02:38 2007 -0800 H. Peter Anvin 
  * BR 877583: Fix RAA memory leak
Mon Nov 19 11:53:18 2007 -0800 H. Peter Anvin 
  * BR 863173: Fix offsets of TIMES/INCBIN in list file
Mon Nov 19 11:45:40 2007 -0800 H. Peter Anvin 
  * BR 1834731: Remove redundant error messages for no input file
Mon Nov 19 11:44:05 2007 -0800 H. Peter Anvin 
  * insns.pl: remove debugging output
Sun Nov 18 22:18:09 2007 -0800 H. Peter Anvin 
  * Clean up remaining build warnings
Sun Nov 18 21:55:26 2007 -0800 H. Peter Anvin 
  * BR 1834292: Fix multiple disassembler bugs
Sun Nov 18 12:01:05 2007 -0800 H. Peter Anvin 
  * BR 1834056: Remove warnings in rdoff/rdoff.c
Sun Nov 18 11:55:10 2007 -0800 H. Peter Anvin 
  * BR 1091926: Bounds checking for command line parsing
Sat Nov 17 21:21:18 2007 -0800 H. Peter Anvin 
  * Remove FIXME from documentation
Sat Nov 17 21:08:33 2007 -0800 Charles Crayne 
  * Check in Keith's Fixes
Sat Nov 17 14:35:19 2007 -0800 H. Peter Anvin 
  * Make the definition for float_const() match the prototype
Fri Nov 16 00:03:02 2007 -0800 H. Peter Anvin 
  * NASM 2.00rc1
Thu Nov 15 17:12:29 2007 -0800 H. Peter Anvin 
  * Clean up the command-line parsing; make -w/-W match others
Thu Nov 15 14:38:19 2007 -0800 H. Peter Anvin 
  * BR 993895: Support zero-operand floating-point insn
Thu Nov 15 10:25:52 2007 -0800 H. Peter Anvin 
  * Remove some vestiges of "native" RESW/RESD support
Thu Nov 15 10:24:55 2007 -0800 H. Peter Anvin 
  * outbin.c: fix one missed change from type -> size
Tue Nov 13 19:52:54 2007 -0800 root 
  * Support setting OSABI value in ELF header.
Tue Nov 13 11:34:34 2007 -0800 H. Peter Anvin 
  * Enable a few warnings by default; clean up warning descriptions
Tue Nov 13 11:31:15 2007 -0800 H. Peter Anvin 
  * Add gcc-style -W/-Wno- warning selections; -Wall; -Werror
Tue Nov 13 10:37:23 2007 -0800 H. Peter Anvin 
  * Clean up the fwrite*() function definitions somewhat
Tue Nov 13 09:49:51 2007 -0800 H. Peter Anvin 
  * Cast 64-bit switch expressions to (int) to keep OpenWatcom happy
Tue Nov 13 09:46:38 2007 -0800 H. Peter Anvin 
  * x86-host-specific performance improvement
Tue Nov 13 09:37:59 2007 -0800 H. Peter Anvin 
  * Address data is int64_t; simplify writing an address object
Mon Nov 12 23:00:31 2007 -0800 H. Peter Anvin 
  * ndisasm: factor out the common operand-extraction code
Mon Nov 12 22:56:07 2007 -0800 H. Peter Anvin 
  * Un-special-case "xchg rax,rax"; disassemble o64
Mon Nov 12 22:11:46 2007 -0800 H. Peter Anvin 
  * BR 1709392: Fix alignment handling in Mach-O format
Mon Nov 12 22:05:31 2007 -0800 H. Peter Anvin 
  * BR 1828866: fix handling of LAR/LSL
Mon Nov 12 21:57:00 2007 -0800 H. Peter Anvin 
  * Better (but not *good!*) handling of 64-bit addressing in ndisasm
Mon Nov 12 21:02:33 2007 -0800 H. Peter Anvin 
  * Fix disassembly of XCHG
Mon Nov 12 20:18:33 2007 -0800 H. Peter Anvin 
  * Test of XCHG
Mon Nov 12 20:18:05 2007 -0800 H. Peter Anvin 
  * Fix handling of XCHG in 64-bit mode
Mon Nov 12 19:36:13 2007 -0800 H. Peter Anvin 
  * More \321 -> \324 bug fixes
Mon Nov 12 18:26:31 2007 -0800 H. Peter Anvin 
  * float.c: all warnings and errors are pass 1 only
Sat Nov 10 21:55:19 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives.
Sat Nov 10 17:52:23 2007 -0800 Charles Crayne 
  * Clean up a few more 32-bit bottlenecks
Fri Nov 9 16:37:41 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives
Fri Nov 9 16:33:54 2007 -0800 Charles Crayne 
  * Merge branch 'master' of /home/chuck/development/gitnasm/
Fri Nov 9 16:25:43 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives
Fri Nov 9 14:44:02 2007 -0800 H. Peter Anvin 
  * Don't combine type and size into a single argument
Thu Nov 8 22:11:14 2007 -0800 Charles Crayne 
  * Add flat64 to %stacksize choices
Thu Nov 8 20:43:22 2007 -0800 H. Peter Anvin 
  * Fix building under OpenWatcom
Thu Nov 8 20:29:37 2007 -0800 H. Peter Anvin 
  * ps2pdf: remove -dOptimize=true
Thu Nov 8 20:21:41 2007 -0800 H. Peter Anvin 
  * No binary files left in the source distro; unbreak release script
Thu Nov 8 20:01:11 2007 -0800 H. Peter Anvin 
  * BR 1828103: Fix %arg and %local
Thu Nov 8 19:34:01 2007 -0800 H. Peter Anvin 
  * nasmlib.c: prefix_name(): use the elements() macro
Thu Nov 8 19:30:22 2007 -0800 H. Peter Anvin 
  * Move elements() to nasmlib.h
Thu Nov 8 19:15:33 2007 -0800 H. Peter Anvin 
  * constipate the "str" argument to bsi() and bsii()
Wed Nov 7 19:03:46 2007 -0800 Charles Crayne 
  * Upgrade RAA functions to hold 64-bit data.
Tue Nov 6 21:48:12 2007 -0800 Charles Crayne 
  * Pass 64-bit instruction lengths to back-ends.
Tue Nov 6 18:27:23 2007 -0800 Charles Crayne 
  * Prepare for 64-bit instruction lengths
Mon Nov 5 21:49:49 2007 -0800 Charles Crayne 
  * Disambiguate error messages
Mon Nov 5 17:19:32 2007 -0800 Charles Crayne 
  * Upgrade label functions to 64-bit
Sun Nov 4 21:10:42 2007 -0800 H. Peter Anvin 
  * Permit opcode names as labels as long as they are followed by a colon
Sun Nov 4 15:28:30 2007 -0800 Charles Crayne 
  * Make warning limit valid for both i386 and x86_64
Sat Nov 3 22:06:13 2007 -0700 Charles Crayne 
  * Warn on out of bounds EA displacements
Thu Nov 1 15:08:27 2007 -0700 H. Peter Anvin 
  * Treat info files as binary when creating xdoc distro file
Thu Nov 1 15:07:42 2007 -0700 H. Peter Anvin 
  * Remove obsolete binary files from the distribution
Thu Nov 1 14:53:32 2007 -0700 H. Peter Anvin 
  * Move declarations before statements
Wed Oct 31 23:37:35 2007 -0700 H. Peter Anvin 
  * NASM 0.99.06
Wed Oct 31 23:37:19 2007 -0700 H. Peter Anvin 
  * Script to tag the tree for release
Wed Oct 31 10:59:26 2007 -0700 H. Peter Anvin 
  * Even more "riprel" tests
Tue Oct 30 01:17:57 2007 -0700 H. Peter Anvin 
  * floatx.asm: add tests for "rounds up to smallest denorm"
Tue Oct 30 01:13:27 2007 -0700 H. Peter Anvin 
  * Run "make alldeps"
Tue Oct 30 01:13:09 2007 -0700 H. Peter Anvin 
  * float.c: handle round-up-to-denorm correctly.
Tue Oct 30 00:59:27 2007 -0700 H. Peter Anvin 
  * Exhaustive test for 8-bit floating point values
Mon Oct 29 23:12:47 2007 -0700 H. Peter Anvin 
  * Clean up the handing of operands in assemble.c
Mon Oct 29 22:56:08 2007 -0700 H. Peter Anvin 
  * Don't warn for segmented references
Mon Oct 29 20:20:12 2007 -0700 H. Peter Anvin 
  * Use a 32-bit floating-point limb size; support 8-bit float
Mon Oct 29 18:24:59 2007 -0700 Charles Crayne 
  * Reduce severity of redundant prefixes from error to warning.
Sun Oct 28 23:23:24 2007 -0700 H. Peter Anvin 
  * Test of some addressing modes in 64-bit mode.
Sun Oct 28 23:21:46 2007 -0700 H. Peter Anvin 
  * Fix bogus flagging of effective addresses as invalid
Sun Oct 28 23:10:34 2007 -0700 H. Peter Anvin 
  * Actually shut up the warning in rdfload.c
Sun Oct 28 22:04:42 2007 -0700 H. Peter Anvin 
  * Clean up stealth whitespace
Sun Oct 28 22:04:00 2007 -0700 H. Peter Anvin 
  * Fix warning about cast to pointer in rdfload.c
Sun Oct 28 22:04:00 2007 -0700 H. Peter Anvin 
  * 64-bit addressing and prefix handling changes
Sun Oct 28 15:29:54 2007 -0700 Charles Crayne 
  * Adjust stabs symbol index to match symbol table.
Fri Oct 26 21:38:02 2007 -0700 H. Peter Anvin 
  * readnum(): handle prefix-suffix collision like "0h"
Fri Oct 26 18:49:29 2007 -0700 H. Peter Anvin 
  * Better handling of platforms which hide "extended" functionality
Wed Oct 24 15:51:40 2007 -0700 Charles Crayne 
  * Merge branch 'master' of /home/chuck/development/gitnasm/
Wed Oct 24 15:30:17 2007 -0700 Charles Crayne 
  * Update sections about debug info formats
Wed Oct 24 15:29:51 2007 -0700 H. Peter Anvin 
  * Fix the handling of floating-point tokens in the preprocessor
Tue Oct 23 19:28:39 2007 -0700 Charles Crayne 
  * Fix bugs item #1817677
Tue Oct 23 00:08:58 2007 -0700 H. Peter Anvin 
  * Slightly simplify the radix-detection code
Mon Oct 22 19:48:06 2007 -0700 H. Peter Anvin 
  * Unbreak particularly tricky hex constants
Mon Oct 22 19:37:36 2007 -0700 H. Peter Anvin 
  * Decimal floating point can also start with 0. 0e 0E
Mon Oct 22 17:34:10 2007 -0700 H. Peter Anvin 
  * Support binary and octal floating-point
Mon Oct 22 16:53:48 2007 -0700 H. Peter Anvin 
  * More consistent handling of radix letters
Sun Oct 21 15:33:01 2007 -0700 H. Peter Anvin 
  * float.c: correct exponent capping
Sun Oct 21 14:21:43 2007 -0700 Charles Crayne 
  * Clean up elf symbol table section
Fri Oct 19 18:33:57 2007 -0700 H. Peter Anvin 
  * Allow $-prefixed hexadecimal FP as an alternative to 0x
Fri Oct 19 14:43:22 2007 -0700 H. Peter Anvin 
  * Scripts to remove stealth whitespace
Fri Oct 19 14:42:29 2007 -0700 H. Peter Anvin 
  * Formatting: kill off "stealth whitespace"
Fri Oct 19 14:26:52 2007 -0700 H. Peter Anvin 
  * test/floatx.asm: fix test case
Fri Oct 19 14:19:52 2007 -0700 H. Peter Anvin 
  * uscore.asm: Fix test case
Fri Oct 19 14:17:51 2007 -0700 H. Peter Anvin 
  * float.c: mark read_exponent() static
Fri Oct 19 14:10:35 2007 -0700 H. Peter Anvin 
  * Don't confuse suffixed hexadecimal with floating-point
Fri Oct 19 13:17:24 2007 -0700 H. Peter Anvin 
  * Anchor filename locations in .gitignore
Fri Oct 19 13:16:51 2007 -0700 H. Peter Anvin 
  * test/Makefile: Use -Ox instead of -O999
Fri Oct 19 13:14:06 2007 -0700 H. Peter Anvin 
  * Test of underscored constants
Fri Oct 19 13:10:46 2007 -0700 H. Peter Anvin 
  * Allow underscores in numbers; better detection of FP
Fri Oct 19 10:52:31 2007 -0700 H. Peter Anvin 
  * Modernize nasm.spec.in and make it closer to the Fedora version
Thu Oct 18 23:33:06 2007 -0700 Charles Crayne 
  * Suppress datarootdir warnings from configure
Thu Oct 18 21:17:20 2007 -0700 Charles Crayne 
  * Suppress signedness warnings in disassembler
Thu Oct 18 19:14:08 2007 -0700 H. Peter Anvin 
  * Cleaner solution for MinGW handling of __STRICT_ANSI__
Thu Oct 18 19:14:08 2007 -0700 H. Peter Anvin 
  * configure: Undefine __STRICT_ANSI__ for mingw's benefit
Thu Oct 18 19:14:07 2007 -0700 H. Peter Anvin 
  * Fix invocation of readnum()
Thu Oct 18 19:02:42 2007 -0700 Charles Crayne 
  * Suppress a few signedness warnings
Thu Oct 18 17:04:10 2007 -0700 root 
  * Avoid unnecessary warning on redefinition of section (bug 801180)
Wed Oct 17 17:55:45 2007 -0700 Charles Crayne 
  * Generate stabs entries for any executable section
Tue Oct 16 22:59:09 2007 -0700 H. Peter Anvin 
  * NASM 0.99.05
Tue Oct 16 15:46:04 2007 -0700 H. Peter Anvin 
  * Tests of obscenely large exponents
Tue Oct 16 14:42:32 2007 -0700 H. Peter Anvin 
  * Comma-separate contents of __FLOAT__
Tue Oct 16 14:40:27 2007 -0700 H. Peter Anvin 
  * Implement floating-point option control directive
Tue Oct 16 11:48:07 2007 -0700 H. Peter Anvin 
  * Floating-point warning fixes; fix round-to-overflow
Tue Oct 16 11:32:58 2007 -0700 H. Peter Anvin 
  * Handle rounding of denorms correctly; make fp overflow a warning
Tue Oct 16 10:35:02 2007 -0700 H. Peter Anvin 
  * Additional entries for .gitignore
Tue Oct 16 10:32:57 2007 -0700 H. Peter Anvin 
  * Refactor floating-point formatting code; fix 80-bit denorms
Tue Oct 16 10:31:16 2007 -0700 H. Peter Anvin 
  * Add 1.5 as a test case: representative of an exact fraction
Mon Oct 15 20:06:06 2007 -0700 H. Peter Anvin 
  * Recognize 'd', 't' and 'y' as radix suffixes
Mon Oct 15 19:53:10 2007 -0700 H. Peter Anvin 
  * Fix FISTTP opcodes (BR 689695)
Mon Oct 15 19:46:32 2007 -0700 H. Peter Anvin 
  * New floating-point conversion routines
Mon Oct 15 17:48:43 2007 -0700 H. Peter Anvin 
  * Add testnos3 from the gdtoa package (floating-point test)
Sat Oct 13 23:19:21 2007 -0700 H. Peter Anvin 
  * .gitignore file doesn't need to be in the release file
Sat Oct 13 23:17:41 2007 -0700 H. Peter Anvin 
  * Add .gitignore file so "git status" produces something sane
Sat Oct 13 23:12:46 2007 -0700 H. Peter Anvin 
  * autoconf: drop AC_USE_SYSTEM_EXTENSIONS to support autoconf 2.59
Sat Oct 13 07:09:22 2007 -0700 Keith Kanios 
  * Fix 32-bit types in preproc.c and eval.c
Thu Oct 11 20:32:33 2007 -0700 Charles Crayne 
  * Must define types before using them
Thu Oct 11 13:42:09 2007 -0700 H. Peter Anvin 
  * preproc.c: move smacro define/undef to separate functions
Thu Oct 11 13:38:38 2007 -0700 H. Peter Anvin 
  * preproc.c: PP_DEFINE and PP_XDEFINE are case-sensitive
Thu Oct 11 12:52:03 2007 -0700 H. Peter Anvin 
  * preproc.c: normalize the handling of case sensitivity
Thu Oct 11 12:51:06 2007 -0700 H. Peter Anvin 
  * Define macros necessary for <inttypes.h> on C++
Thu Oct 11 10:12:58 2007 -0700 H. Peter Anvin 
  * More "bool" fixes
Thu Oct 11 10:11:57 2007 -0700 H. Peter Anvin 
  * preproc.c: allow 64-bit repeat counts
Thu Oct 11 10:06:19 2007 -0700 H. Peter Anvin 
  * preproc.c: For an SMacro, in_progress really is a boolean (no %rep)
Thu Oct 11 00:05:57 2007 -0700 H. Peter Anvin 
  * Additional uses of bool and enum
Thu Oct 11 00:05:57 2007 -0700 H. Peter Anvin 
  * preproc.c: MMacro.in_progress is not a boolean
Wed Oct 10 18:07:51 2007 -0700 H. Peter Anvin 
  * saa_fread/fwrite: when seeking, must set [rw]ptr as well
Wed Oct 10 14:58:45 2007 -0700 H. Peter Anvin 
  * Use the compiler-provided booleans if available, otherwise emulate
Wed Oct 10 14:55:14 2007 -0700 H. Peter Anvin 
  * owlinux.mak: don't clean things we won't be able to
Wed Oct 10 14:29:53 2007 -0700 H. Peter Anvin 
  * configure.in: looks like we need autoconf 2.61 :(
Wed Oct 10 14:06:59 2007 -0700 H. Peter Anvin 
  * Create option -Ox to tell NASM to do unlimited passes
Mon Oct 8 19:26:57 2007 -0700 H. Peter Anvin 
  * Revert "floatb.asm: fix broken testcase"
Mon Oct 8 18:39:24 2007 -0700 H. Peter Anvin 
  * floatb.asm: fix broken testcase
Mon Oct 8 12:41:00 2007 -0700 H. Peter Anvin 
  * saa_rstruct: fix overrun check
Mon Oct 8 12:12:23 2007 -0700 H. Peter Anvin 
  * Add Frank's floattest.asm test file
Sun Oct 7 21:13:14 2007 -0700 H. Peter Anvin 
  * saa_fpwrite: initializing "len" should be part of the loop
Sun Oct 7 18:46:57 2007 -0700 Charles Crayne 
  * Fix infinite loop in function saa_fpwrite
Fri Oct 5 17:44:16 2007 -0700 H. Peter Anvin 
  * zerobyte.asm: use a real instruction to avoid confusing ndisasm
Fri Oct 5 17:42:31 2007 -0700 H. Peter Anvin 
  * zerobyte.asm: add test cases for non-initial \170 uses
Fri Oct 5 17:29:01 2007 -0700 H. Peter Anvin 
  * Check in the proper zerobyte test
Fri Oct 5 17:04:32 2007 -0700 H. Peter Anvin 
  * Emit REX prefix before literal zero (\170)
Fri Oct 5 17:01:15 2007 -0700 H. Peter Anvin 
  * LICENSE: Break long line
Fri Oct 5 14:36:03 2007 -0700 H. Peter Anvin 
  * Add test for problematic floats
Thu Oct 4 23:51:08 2007 -0700 H. Peter Anvin 
  * floatx.asm: add Inf and NaN to the boundary condition tests
Thu Oct 4 23:09:19 2007 -0700 H. Peter Anvin 
  * floatx.asm: add specific tests for exponent boundary conditions
Thu Oct 4 22:51:08 2007 -0700 H. Peter Anvin 
  * float.c: correct the exponent
Thu Oct 4 15:18:23 2007 -0700 H. Peter Anvin 
  * Additional rules in test/Makefile
Thu Oct 4 13:42:56 2007 -0700 H. Peter Anvin 
  * Rewrite the handling of SAA's to allow random access
Wed Oct 3 21:30:57 2007 -0700 H. Peter Anvin 
  * Change cloc_t to struct location, and reorder the members
Wed Oct 3 21:24:51 2007 -0700 H. Peter Anvin 
  * BR 1352920: change loc_t -> cloc_t
Wed Oct 3 21:22:16 2007 -0700 H. Peter Anvin 
  * BR 1352920: Handle upper case %line
Wed Oct 3 17:40:12 2007 -0700 H. Peter Anvin 
  * Use autoconf to request feature macros
Tue Oct 2 22:04:15 2007 -0700 H. Peter Anvin 
  * preproc.c: constipation
Tue Oct 2 21:57:27 2007 -0700 H. Peter Anvin 
  * make alldeps
Tue Oct 2 21:53:51 2007 -0700 H. Peter Anvin 
  * Portability fixes
Tue Oct 2 21:13:18 2007 -0700 H. Peter Anvin 
  * Run "make alldeps".
Tue Oct 2 17:40:00 2007 -0700 H. Peter Anvin 
  * Use the crc64 we already use as the perfect hash function prehash
Tue Oct 2 15:09:33 2007 -0700 H. Peter Anvin 
  * insns.dat: add systematic names for the hinting NOPs (0F18-0F1F)
Mon Oct 1 11:28:32 2007 -0700 H. Peter Anvin 
  * Unspecified files are null strings, not null pointers
Mon Oct 1 11:26:31 2007 -0700 H. Peter Anvin 
  * Check for the most basic filename overlaps
Sun Sep 30 22:15:36 2007 -0700 Charles Crayne 
  * modified:   nasm.1 to add newer command line options
Fri Sep 28 21:27:41 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Fri Sep 28 20:17:12 2007 -0700 H. Peter Anvin 
  * configure.in: AC_SUBST_FILE should have been AC_SUBST
Fri Sep 28 17:17:20 2007 -0700 H. Peter Anvin 
  * Unbreak relative references to immediate addresses
Fri Sep 28 15:16:47 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Fri Sep 28 12:01:55 2007 -0700 H. Peter Anvin 
  * lib/vsnprintf.c: correct boundary conditions
Fri Sep 28 10:50:20 2007 -0700 H. Peter Anvin 
  * Add substitutes for snprintf() and vsnprintf()
Fri Sep 28 02:03:41 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Thu Sep 27 21:35:04 2007 -0700 H. Peter Anvin 
  * Exclude config.h from the dependency list for the canned makefiles
Thu Sep 27 21:12:17 2007 -0700 H. Peter Anvin 
  * version.pl: Add support for daily snapshot releases
Thu Sep 27 19:46:55 2007 -0700 H. Peter Anvin 
  * Add Makefile for Linux -> DOS, Win32, OS/2 using OpenWatcom
Wed Sep 26 19:57:07 2007 -0700 H. Peter Anvin 
  * Add Makefile for OpenWatcom (DOS, OS/2 or Win32 output)
Wed Sep 26 17:00:18 2007 -0700 H. Peter Anvin 
  * Test for various addressing modes in 64-bit mode
Wed Sep 26 15:19:28 2007 -0700 H. Peter Anvin 
  * nasm option reshuffling, -E -> -Z
Tue Sep 25 23:57:21 2007 -0400 Frank Kotler 
  * Version 0.99.04
Tue Sep 25 20:36:45 2007 -0700 H. Peter Anvin 
  * nasmdoc: corrections on 64-bit immediates/displacements
Tue Sep 25 16:02:21 2007 -0700 H. Peter Anvin 
  * nasmdoc: shorten lines which are too long
Tue Sep 25 16:01:07 2007 -0700 H. Peter Anvin 
  * Document NASM behaviour for 64-bit immediates and displacements
Tue Sep 25 15:44:40 2007 -0700 H. Peter Anvin 
  * test/movimm.asm: add optimizable forms
Tue Sep 25 15:41:19 2007 -0700 H. Peter Anvin 
  * assemble.c: clean up whitespace
Tue Sep 25 15:40:36 2007 -0700 H. Peter Anvin 
  * Correct the handling of "MOV" with immediate in 64-bit mode
Tue Sep 25 15:39:42 2007 -0700 H. Peter Anvin 
  * Test of immediate handling on 64-bit mode
Tue Sep 25 14:27:34 2007 -0700 H. Peter Anvin 
  * Add nasm_zalloc() to nasmlib.c
Tue Sep 25 14:26:03 2007 -0700 H. Peter Anvin 
  * Fix BR 1490407: size of the second operand of LAR/LSL
Tue Sep 25 14:11:29 2007 -0700 H. Peter Anvin 
  * Fix BR 1490407: size of the second operand of LAR/LSL
Tue Sep 25 13:34:55 2007 -0700 H. Peter Anvin 
  * Makefile.in: make "make install" create directories
Tue Sep 25 08:48:37 2007 -0700 H. Peter Anvin 
  * Fix BR 1445441: uninitialized use of "error_file"
Mon Sep 24 21:33:17 2007 -0700 H. Peter Anvin 
  * preproc.c: fix the loop in %undef
Mon Sep 24 20:53:48 2007 -0700 H. Peter Anvin 
  * float.c: clear off uninitialized warning
Mon Sep 24 17:02:41 2007 -0700 H. Peter Anvin 
  * outcoff: set the "virtual size field" to zero (BR 1351586)
Mon Sep 24 15:56:02 2007 -0700 H. Peter Anvin 
  * insns.dat: SMINT - mark ND, DMINT - fix opcode
Mon Sep 24 15:55:20 2007 -0700 H. Peter Anvin 
  * 0F0F is a 3Dnow! prefix; remove from prefix list
Mon Sep 24 15:48:09 2007 -0700 H. Peter Anvin 
  * Additional compaction missed by script
Mon Sep 24 15:42:53 2007 -0700 H. Peter Anvin 
  * insns.dat: machine-generated compaction mmx/xmmreg,mem -> mmx/xmmrm
Mon Sep 24 13:54:00 2007 -0700 H. Peter Anvin 
  * nasmdoc: grammar fix
Mon Sep 24 13:44:02 2007 -0700 H. Peter Anvin 
  * nasmdoc: remove stray periods
Mon Sep 24 13:42:09 2007 -0700 H. Peter Anvin 
  * test/Makefile: make a bit more useful
Mon Sep 24 13:41:58 2007 -0700 H. Peter Anvin 
  * Implement the -MG option (SF RFE 1564264)
Mon Sep 24 12:52:09 2007 -0700 H. Peter Anvin 
  * nasmdoc: clarify __float*__ example
Mon Sep 24 12:44:38 2007 -0700 H. Peter Anvin 
  * nasmdoc: document the __float*__ operators
Mon Sep 24 12:30:54 2007 -0700 H. Peter Anvin 
  * Support __float*__ for floating-point numbers in expressions
Mon Sep 24 10:51:07 2007 -0700 H. Peter Anvin 
  * eval.c: replace sequence of ifs with switch
Mon Sep 24 10:50:23 2007 -0700 H. Peter Anvin 
  * tokhash: allow a bit smarter pattern matching
Sat Sep 22 22:35:28 2007 -0700 H. Peter Anvin 
  * Implement INVLPGA according to the documentation
Sat Sep 22 22:02:34 2007 -0700 H. Peter Anvin 
  * Reformat insns.dat to uniform column width
Sat Sep 22 21:50:03 2007 -0700 H. Peter Anvin 
  * Simple test for 0x67 prefixes
Sat Sep 22 21:49:51 2007 -0700 H. Peter Anvin 
  * Auto-generate 0x67 prefixes without the need for \30x codes
Sat Sep 22 21:47:13 2007 -0700 H. Peter Anvin 
  * Make test/Makefile a bit more useful
Sat Sep 22 21:29:41 2007 -0700 H. Peter Anvin 
  * Add TY_OWORD for "DO" output
Sat Sep 22 19:52:11 2007 -0700 H. Peter Anvin 
  * LDDQU needs \301 (BR 1103549)
Sat Sep 22 19:51:13 2007 -0700 H. Peter Anvin 
  * RDTSCP and INVLPGA aren't 64-bit specific
Sat Sep 22 19:40:37 2007 -0700 H. Peter Anvin 
  * Cyrix GX1 instructions: BBx_RESET, CPU_READ, CPU_WRITE
Sat Sep 22 19:28:14 2007 -0700 H. Peter Anvin 
  * Centaur XSHA1, XSHA256, MONTMUL
Sat Sep 22 19:20:56 2007 -0700 H. Peter Anvin 
  * Implement Centaur's XCRYPT instructions
Sat Sep 22 19:13:05 2007 -0700 H. Peter Anvin 
  * Add Geode LX (AMD's Cyrix-derived core) instructions
Sat Sep 22 19:05:11 2007 -0700 H. Peter Anvin 
  * Add the GETSEC instruction for Intel SMX
Sat Sep 22 18:59:18 2007 -0700 H. Peter Anvin 
  * Add the AMD SSE4a and LZCNT instructions
Sat Sep 22 18:23:20 2007 -0700 H. Peter Anvin 
  * Tag UMOV as ND (no disassembly) to avoid collision
Sat Sep 22 18:20:49 2007 -0700 H. Peter Anvin 
  * Disallow optimizing by less than 5 passes.
Sat Sep 22 17:45:45 2007 -0700 H. Peter Anvin 
  * BR 1783117: Document that %+ needs a space after it, and fix crash
Sat Sep 22 16:44:56 2007 -0700 H. Peter Anvin 
  * nasm.spec.in: minor fixes
Sat Sep 22 16:38:25 2007 -0700 H. Peter Anvin 
  * release script: handle stricter CLI parsing for "git tag"
Sat Sep 22 16:35:11 2007 -0700 H. Peter Anvin 
  * Update nasm.spec.in and make it handle rc releases
Sat Sep 22 16:19:19 2007 -0700 H. Peter Anvin 
  * version.pl: support version numbers of the form X.Y[.Z]rcW
Thu Sep 20 21:33:43 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Thu Sep 20 21:12:33 2007 -0700 Charles Crayne 
  * 	modified:   misc/release to fix bug in removing .git
Wed Sep 19 21:41:43 2007 -0700 H. Peter Anvin 
  * Merge branch 'master' of git+ssh://repo.or.cz/srv/git/nasm
Wed Sep 19 21:41:27 2007 -0700 H. Peter Anvin 
  * Update manual pages
Wed Sep 19 21:41:02 2007 -0700 H. Peter Anvin 
  * Remove limit on number of sync points
Wed Sep 19 21:40:37 2007 -0700 H. Peter Anvin 
  * Make nasm_malloc() et al available from inside ndisasm
Wed Sep 19 21:07:32 2007 -0400 Frank Kotler 
  * Version 0.99.03
Wed Sep 19 21:06:59 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Wed Sep 19 16:22:03 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/sse5'
Wed Sep 19 16:15:22 2007 -0700 H. Peter Anvin 
  * test/Makefile: make a bit more useful
Tue Sep 18 22:54:40 2007 -0700 H. Peter Anvin 
  * Slightly optimize the interface to nasm_token_hash()
Wed Sep 19 01:34:55 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Tue Sep 18 22:23:42 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Tue Sep 18 22:22:49 2007 -0700 H. Peter Anvin 
  * elf64: fix 32-bit truncations
Tue Sep 18 22:08:04 2007 -0700 H. Peter Anvin 
  * Document Infinity and NaN
Tue Sep 18 21:55:56 2007 -0700 H. Peter Anvin 
  * Support generating NaNs and infinities
Tue Sep 18 19:12:26 2007 -0700 H. Peter Anvin 
  * Update documentation
Tue Sep 18 18:37:36 2007 -0700 H. Peter Anvin 
  * Simple test for hexadecimal floating-point numbers
Tue Sep 18 18:33:17 2007 -0700 H. Peter Anvin 
  * Fix error-reporting in hexadecimal floating-point numbers
Tue Sep 18 18:31:26 2007 -0700 H. Peter Anvin 
  * Support C99-style hexadecimal floating point.
Tue Sep 18 17:50:34 2007 -0700 H. Peter Anvin 
  * Unify all standard IEEE floating-point formats; add 128-bit
Tue Sep 18 17:49:09 2007 -0700 H. Peter Anvin 
  * Fix handling of DO; support unary + for floating-point numbers
Tue Sep 18 16:39:03 2007 -0700 H. Peter Anvin 
  * Support 16-bit IEEE floating point; used in SSE5
Tue Sep 18 15:43:40 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Tue Sep 18 15:43:08 2007 -0700 H. Peter Anvin 
  * Add NOP with argument to the instruction list
Tue Sep 18 15:24:38 2007 -0700 H. Peter Anvin 
  * Remove 0FC2 from list of instruction prefixes
Tue Sep 18 15:08:20 2007 -0700 H. Peter Anvin 
  * Speed up the disassembler by allowing prefixed instruction tables
Tue Sep 18 13:45:12 2007 -0700 H. Peter Anvin 
  * Document oword, do and reso
Tue Sep 18 13:01:32 2007 -0700 H. Peter Anvin 
  * Implement "oword" (128 bits) as a first-class size
Tue Sep 18 12:38:07 2007 -0700 H. Peter Anvin 
  * Change the token prehash function for better convergence
Tue Sep 18 12:23:21 2007 -0700 H. Peter Anvin 
  * SSE5 instruction table
Tue Sep 18 02:06:09 2007 -0400 Frank Kotler 
  * add "const" to output/outdbg.c
Mon Sep 17 18:45:44 2007 -0700 H. Peter Anvin 
  * Disassembler support for SSE5 instructions
Mon Sep 17 17:27:46 2007 -0700 H. Peter Anvin 
  * insns.dat: All SSE5 instructions are AMD
Mon Sep 17 17:25:27 2007 -0700 H. Peter Anvin 
  * Actually generate SSE5 instructions
Mon Sep 17 16:55:04 2007 -0700 H. Peter Anvin 
  * Initial support for generating DREX suffixes
Mon Sep 17 16:31:33 2007 -0700 H. Peter Anvin 
  * Fix a few instances of missing renumbers
Mon Sep 17 16:20:45 2007 -0700 H. Peter Anvin 
  * Enable IF_AR3
Mon Sep 17 15:49:53 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Mon Sep 17 15:49:30 2007 -0700 H. Peter Anvin 
  * Initial support for four arguments per instruction
Mon Sep 17 15:48:32 2007 -0700 H. Peter Anvin 
  * CLFLUSH: Neither an x64 instruction nor AMD
Mon Sep 17 13:56:26 2007 -0700 H. Peter Anvin 
  * Sort dependency lists
Mon Sep 17 13:53:14 2007 -0700 H. Peter Anvin 
  * Cleaner way to handle MSVC's _snprintf() underscore damage
Mon Sep 17 13:19:25 2007 -0700 H. Peter Anvin 
  * test/r13.asm: test special-casing of rbp and r13 in 64-bit mode
Mon Sep 17 13:03:33 2007 -0700 H. Peter Anvin 
  * Additional documentation for 64-bit programming
Sun Sep 16 22:27:07 2007 -0700 H. Peter Anvin 
  * INSTALL: MSVC++ compilation instructions
Sun Sep 16 22:17:29 2007 -0700 H. Peter Anvin 
  * make alldeps: change Mkfiles/Makefile.* to Mkfiles/*.mak
Sun Sep 16 22:16:24 2007 -0700 H. Peter Anvin 
  * Fix Makefile for MSVC++ 2005, delete obsolete Makefiles
Sun Sep 16 22:15:34 2007 -0700 H. Peter Anvin 
  * Minor fixes needed to compile with MSVC++ 2005
Sun Sep 16 18:35:02 2007 -0700 H. Peter Anvin 
  * Run "make alldeps"
Sun Sep 16 18:04:57 2007 -0700 H. Peter Anvin 
  * Switch the preprocessor over to using the hash table library
Sun Sep 16 17:53:17 2007 -0700 H. Peter Anvin 
  * Fix the handling of local labels
Fri Sep 14 18:36:01 2007 -0700 H. Peter Anvin 
  * preproc.c: remove unnecessary int64_t
Fri Sep 14 18:03:29 2007 -0700 H. Peter Anvin 
  * Use the new hash table function library to store labels
Fri Sep 14 09:24:38 2007 -0700 H. Peter Anvin 
  * Define a proper hash table library
Thu Sep 13 18:13:20 2007 -0700 H. Peter Anvin 
  * Simple performance benchmarks: label, macro and token lookups
Thu Sep 13 12:25:32 2007 -0700 H. Peter Anvin 
  * release script: fix final cleanup
Thu Sep 13 12:22:00 2007 -0700 H. Peter Anvin 
  * Modify release script for a git-centric world
Thu Sep 13 11:06:42 2007 -0700 H. Peter Anvin 
  * pptok.c: don't insist on C99 compiler behaviour
Wed Sep 12 22:02:06 2007 -0700 H. Peter Anvin 
  * Fix literal F2 and F3 prefixes
Wed Sep 12 21:58:51 2007 -0700 H. Peter Anvin 
  * Add (untested!) SSSE3, SSE4.1, SSE4.2 instructions
Wed Sep 12 21:06:36 2007 -0700 H. Peter Anvin 
  * Add support for Tejas New Instructions (SSSE3)
Wed Sep 12 21:05:06 2007 -0700 H. Peter Anvin 
  * Remove $Id$ tags (useless with git)
Wed Sep 12 21:04:58 2007 -0700 H. Peter Anvin 
  * Use rm32 operands for VMREAD/VMWRITE
Wed Sep 12 21:04:51 2007 -0700 H. Peter Anvin 
  * Macros for SSSE3/SSE4 instruction sets
Wed Sep 12 21:04:39 2007 -0700 H. Peter Anvin 
  * Support r/m operands for non-integer types
Wed Sep 12 20:27:41 2007 -0700 H. Peter Anvin 
  * Use enumerations where practical to ease debugging
Wed Sep 12 17:02:55 2007 +0000 H. Peter Anvin 
  * pptok.c: quick-and-dirty downcasing during prehashing
Wed Sep 12 16:55:57 2007 +0000 H. Peter Anvin 
  * phash: Tell the user when the graph is OK
Wed Sep 12 05:18:20 2007 +0000 H. Peter Anvin 
  * pptok.c: handle holes in the pp_directives array
Wed Sep 12 04:20:08 2007 +0000 H. Peter Anvin 
  * preproc.c: adjust whitespace
Wed Sep 12 04:18:37 2007 +0000 H. Peter Anvin 
  * More automation in the preprocessor conditionals handling
Wed Sep 12 02:13:39 2007 +0000 H. Peter Anvin 
  * pptok.c: fix spacing
Wed Sep 12 02:12:07 2007 +0000 H. Peter Anvin 
  * Generate automatically correct tests for %if and %elif
Wed Sep 12 01:34:19 2007 +0000 H. Peter Anvin 
  * Run "make alldeps"; add dependencies missing from the previous checkin
Wed Sep 12 01:29:43 2007 +0000 H. Peter Anvin 
  * Use a perfect hash to look up preprocessor directives
Wed Sep 12 01:27:53 2007 +0000 H. Peter Anvin 
  * phash: Be a bit more aggressive about trying to make a small hash
Wed Sep 12 00:22:29 2007 +0000 H. Peter Anvin 
  * Add RCXZ as a known preprocessor condition
Tue Sep 11 23:57:23 2007 +0000 H. Peter Anvin 
  * doc: add some cross-references
Tue Sep 11 23:52:01 2007 +0000 H. Peter Anvin 
  * Feeble attempt at updating the documentation; remove Appendix B
Tue Sep 11 22:44:03 2007 +0000 H. Peter Anvin 
  * Handle instructions which can have both REX.W and OSP
Tue Sep 11 22:14:18 2007 +0000 H. Peter Anvin 
  * Use enums to make debugging easier
Tue Sep 11 22:13:17 2007 +0000 H. Peter Anvin 
  * ndisasm: handle \366 codes, prefer unprefixed instructions
Tue Sep 11 22:00:34 2007 +0000 H. Peter Anvin 
  * Simplify tokens.dat slightly
Tue Sep 11 04:26:44 2007 +0000 H. Peter Anvin 
  * Quiet gcc warning about uninitialized variables
Tue Sep 11 04:16:57 2007 +0000 H. Peter Anvin 
  * Make the big instruction arrays "const"
Mon Sep 10 23:32:05 2007 +0000 H. Peter Anvin 
  * Use an actual enum for the opcode
Mon Sep 10 23:30:21 2007 +0000 H. Peter Anvin 
  * Fix order of token arguments
Mon Sep 10 18:59:26 2007 +0000 H. Peter Anvin 
  * assemble.c: correct special handing of ESP/RSP
Mon Sep 10 18:59:01 2007 +0000 H. Peter Anvin 
  * tokhash: correct duplicate-token test
Mon Sep 10 18:58:40 2007 +0000 H. Peter Anvin 
  * tokhash: adjust table types to reduce size
Mon Sep 10 18:55:52 2007 +0000 H. Peter Anvin 
  * Fix the MMXREG and XMMREG flags definitions.
Wed Sep 5 06:48:38 2007 +0000 H. Peter Anvin 
  * nasm.spec.in: Copyright -> License
Wed Sep 5 06:40:51 2007 +0000 H. Peter Anvin 
  * Fix "make tar"; useful for RPM testing
Wed Sep 5 06:24:43 2007 +0000 H. Peter Anvin 
  * Remove obsolete Serial: construct; we shouldn't need it anyway.
Tue Sep 4 01:29:43 2007 +0000 Chuck Crayne 
  * Provide 64-bit support for ORG directive
Sun Sep 2 16:37:03 2007 +0000 H. Peter Anvin 
  * Fix some MMX/SSE irregularities which interact with the 64-bit support
Sun Sep 2 14:46:00 2007 +0000 H. Peter Anvin 
  * phash.ph: yet another attempt at getting Perl to behave, arithmetically
Sun Sep 2 06:23:29 2007 +0000 H. Peter Anvin 
  * Simple 64-bit org test
Sun Sep 2 06:20:15 2007 +0000 H. Peter Anvin 
  * phash.ph: remove some stale code
Sun Sep 2 01:00:34 2007 +0000 Chuck Crayne 
  * Force use of integer values for generating hash keys.
Fri Aug 31 18:10:23 2007 +0000 H. Peter Anvin 
  * phash: don't rely on the build platform Perl version of rand()
Fri Aug 31 07:31:51 2007 +0000 H. Peter Anvin 
  * tokhash.pl: formatting changes for readability
Fri Aug 31 07:23:31 2007 +0000 H. Peter Anvin 
  * tokhash: Speed up the rejection of unhashed values
Fri Aug 31 06:06:17 2007 +0000 H. Peter Anvin 
  * tokhash.pl: "ix" should have the same width as the "hash" arrays
Fri Aug 31 00:28:35 2007 +0000 H. Peter Anvin 
  * Add "do not edit" comment to tokhash.c
Fri Aug 31 00:23:40 2007 +0000 H. Peter Anvin 
  * Make the token hash a bit smaller by using 16-bit hash tables
Fri Aug 31 00:16:10 2007 +0000 H. Peter Anvin 
  * Minor cleanup; remove duplication of names.c
Thu Aug 30 23:42:39 2007 +0000 H. Peter Anvin 
  * phash.ph: use a bipartite graph to reduce the storage requirements
Thu Aug 30 22:35:34 2007 +0000 H. Peter Anvin 
  * Finishing touches on perfect hash tokenizer; actually turn the thing on
Thu Aug 30 21:50:20 2007 +0000 H. Peter Anvin 
  * Makefile rule for tokhash.c
Thu Aug 30 21:47:46 2007 +0000 H. Peter Anvin 
  * tokens.dat: Data file containing alphanumeric tokens not in other .dats
Thu Aug 30 21:45:56 2007 +0000 H. Peter Anvin 
  * Generate a perfect hash for the token parser
Thu Aug 30 21:40:08 2007 +0000 H. Peter Anvin 
  * Fix bugs in repeated suffix handling, which led to missing r8d/r8w/r8d
Thu Aug 30 21:39:37 2007 +0000 H. Peter Anvin 
  * phash.ph: more powerful prehashing
Thu Aug 30 20:15:25 2007 +0000 H. Peter Anvin 
  * Make the perfect hash generator an includable module
Wed Aug 29 20:30:31 2007 +0000 H. Peter Anvin 
  * Correct the logic for recording fs: and gs: overrides.
Wed Aug 29 18:20:19 2007 +0000 H. Peter Anvin 
  * Generate R_X86_64_64 relocations in elf64 output
Wed Aug 29 17:24:03 2007 +0000 H. Peter Anvin 
  * Add README file
Wed Aug 29 17:20:09 2007 +0000 H. Peter Anvin 
  * Create a Perl library directory, and add the Graph module to it
Wed Aug 29 17:05:17 2007 +0000 H. Peter Anvin 
  * Perfect hash generator, as a perl script
Wed Aug 29 16:41:43 2007 +0000 H. Peter Anvin 
  * Use standard macro for the default directive
Wed Aug 29 16:40:26 2007 +0000 H. Peter Anvin 
  * Add standard macro for [default] directive
Wed Aug 29 16:38:47 2007 +0000 H. Peter Anvin 
  * More test cases for rel and abs addressing
Wed Aug 29 16:38:05 2007 +0000 H. Peter Anvin 
  * Add [default] directive
Wed Aug 29 16:25:46 2007 +0000 H. Peter Anvin 
  * nasmlib: add bsii() case-insensitive version of bsi()
Wed Aug 29 15:49:53 2007 +0000 H. Peter Anvin 
  * Add test cases for IP-relative addressing
Wed Aug 29 15:19:19 2007 +0000 H. Peter Anvin 
  * Suppress IP-relative only for fs: and gs: overrides
Tue Aug 28 23:06:00 2007 +0000 H. Peter Anvin 
  * Implement REL/ABS modifiers
Sun Aug 26 05:51:39 2007 +0000 Frank Kotler 
  * attempt to make static makefiles aware of outelf32/outelf64
Sun Aug 26 05:48:54 2007 +0000 Frank Kotler 
  * add nasm_strsep to nasmlib, for output/outmacho.c - strtok doesn't work
Sun Aug 26 05:41:33 2007 +0000 Frank Kotler 
  * remove "#include <unistd.h> from rdoff directory - two places - it annoyed Windows users and seems unneeded
Sun Aug 26 05:10:24 2007 +0000 Frank Kotler 
  * finally commit Mike Frysinger's "elf-visibility" patch
Mon Aug 20 21:03:14 2007 +0000 H. Peter Anvin 
  * regs.pl: handle dashed sequences with suffixes
Mon Aug 20 20:10:04 2007 +0000 H. Peter Anvin 
  * sync.c: change ULONG_MAX to UINT32_MAX
Mon Aug 20 20:09:11 2007 +0000 H. Peter Anvin 
  * Add _MIN and _MAX macros for the fixed-size types.
Mon Aug 20 20:02:17 2007 +0000 H. Peter Anvin 
  * ldrdf: cast output of sizeof() before passing to printf(), to avoid warning.
Sun Aug 19 18:49:26 2007 +0000 Keith Kanios 
  * Fixed RIP address processing ambiguity found by Charles Crayne.
Fri Aug 17 07:37:52 2007 +0000 Keith Kanios 
  * Fixed issues with REX prefix effective address generation. Fixed XMM instruction output.
Fri Aug 17 02:03:10 2007 +0000 Keith Kanios 
  * Changed MMXREG and XMMREG flags to help resolve invalid REX prefix generation for MMX instructions.
Sat Jul 7 02:01:08 2007 +0000 H. Peter Anvin 
  * More int/int32_t confusion
Sat Jul 7 01:59:52 2007 +0000 H. Peter Anvin 
  * regflag() should return int32_t.
Thu Jun 21 19:00:12 2007 +0000 H. Peter Anvin 
  * Detect missing <inttypes.h> and include ersatz version if missing
Thu Jun 21 06:24:23 2007 +0000 H. Peter Anvin 
  * inttypes.h: for older preprocessors, specify L and LL as appropriate
Thu Jun 21 06:20:43 2007 +0000 H. Peter Anvin 
  * inttypes.h: Fix spelling of SHRT_MAX
Thu Jun 21 06:15:42 2007 +0000 H. Peter Anvin 
  * inttypes.h: do a single ersatz <inttypes.h> based on <limits.h>
Sun Jun 3 02:42:41 2007 +0000 Chuck Crayne 
  * Support 32-bit direct addressing in 64-bit mode without base or index regs
Sat Jun 2 02:26:21 2007 +0000 H. Peter Anvin 
  * Fix the [U]INT*_C() creation macros
Sat Jun 2 00:05:35 2007 +0000 H. Peter Anvin 
  * For platforms that don't have them, provide <inttypes.h> for common models.
Wed May 30 22:21:11 2007 +0000 H. Peter Anvin 
  * Fix the handling of the \313 code.
Wed May 30 22:20:01 2007 +0000 H. Peter Anvin 
  * Machine-generated \321->\324 corrections
Wed May 30 21:22:33 2007 +0000 Frank Kotler 
  * update "version" to 0.99.02
Wed May 30 20:30:15 2007 +0000 H. Peter Anvin 
  * Correct the generation of 67 prefixes.
Wed May 30 18:30:18 2007 +0000 H. Peter Anvin 
  * Update dependencies.
Wed May 30 16:34:29 2007 +0000 Frank Kotler 
  * update cvs server name in misc/release script
Wed May 30 04:28:50 2007 +0000 H. Peter Anvin 
  * Avoid magic values; we have more than 124 registers now
Wed May 30 04:27:58 2007 +0000 H. Peter Anvin 
  * Remove bogus redundant tests
Wed May 30 03:44:50 2007 +0000 H. Peter Anvin 
  * More \321 -> \324
Wed May 30 03:44:02 2007 +0000 H. Peter Anvin 
  * Remove bogus check for 64-bitness
Wed May 30 03:25:21 2007 +0000 H. Peter Anvin 
  * Get rid of magic open-coded "register numbers"
Wed May 30 02:48:51 2007 +0000 H. Peter Anvin 
  * MOV reg64,reg64 takes \324 (64 bit with REX) not \321 (32 bit)
Wed May 30 00:18:26 2007 +0000 H. Peter Anvin 
  * Rename REGNORM to REG_EA
Wed May 30 00:15:25 2007 +0000 H. Peter Anvin 
  * More instruction flag surgery
Wed May 30 00:05:00 2007 +0000 H. Peter Anvin 
  * More cleanup of operand flags/register classes
Tue May 29 23:57:12 2007 +0000 H. Peter Anvin 
  * Clean up the existing operand flag definitions, and document
Tue May 29 21:44:55 2007 +0000 H. Peter Anvin 
  * Run "make alldeps"
Thu May 24 22:33:07 2007 +0000 Frank Kotler 
  * update version number to 0.99.01
Tue May 15 04:33:43 2007 +0000 H. Peter Anvin 
  * regs.dat: fix comment
Fri May 4 18:47:16 2007 +0000 H. Peter Anvin 
  * 16-bit relocations are standard in ELF64 (at my request, incidentally)
Fri May 4 02:16:08 2007 +0000 Chuck Crayne 
  * Addition of elf32 and elf64 output formats.
Wed May 2 04:21:26 2007 +0000 Chuck Crayne 
  * Allow '!' to be used in expressions with same meaning as in C.
Wed May 2 01:59:16 2007 +0000 Chuck Crayne 
  * Add %IFN and %ELIFN as per RFE #786286
Mon Apr 30 22:26:58 2007 +0000 Chuck Crayne 
  * Accept responsibility for support of outelf64.c
Sun Apr 29 20:57:53 2007 +0000 Chuck Crayne 
  * Clarify comments about relocation entries.
Sun Apr 29 00:28:24 2007 +0000 Chuck Crayne 
  * Allow ELF32 to be invoked either as -f elf or -f elf32
Sat Apr 28 22:18:04 2007 +0000 Chuck Crayne 
  * Eliminate shift count warnings when building on 32-bit systems
Sat Apr 28 06:18:48 2007 +0000 Chuck Crayne 
  * Initial support for ELF64
Wed Apr 18 02:27:18 2007 +0000 H. Peter Anvin 
  * Fix the handling of \324 for computing the length
Wed Apr 18 02:24:34 2007 +0000 Keith Kanios 
  * Fixed RDF/2 to comply with "maxbits" use.
Tue Apr 17 20:23:11 2007 +0000 H. Peter Anvin 
  * Handle "LOCK as REX.R" for MOV CRx; fix warning for invalid 64-bit regs
Mon Apr 16 18:16:46 2007 +0000 Keith Kanios 
  * MEM_OFFSET Instructions Fixed.
Mon Apr 16 15:46:46 2007 +0000 Keith Kanios 
  * Fixed 64-bit Mode Segment Selection.
Mon Apr 16 14:31:54 2007 +0000 Keith Kanios 
  * Fixed distinction between [LOCAL]SYMBOL/IMMEDIATE for RIP-relative addressing.
Mon Apr 16 14:05:01 2007 +0000 Keith Kanios 
  * Fixed long mode MEM_OFFS issue.
Mon Apr 16 13:54:49 2007 +0000 Keith Kanios 
  * Filled in all RIP Register Flags.
Mon Apr 16 05:26:29 2007 +0000 H. Peter Anvin 
  * More \321 -> \324 for 64-bit instructions
Mon Apr 16 04:56:06 2007 +0000 Keith Kanios 
  * Fixed 64-bit offset generation.
Mon Apr 16 02:39:56 2007 +0000 H. Peter Anvin 
  * More 64-bit ndisasm fixes.
Mon Apr 16 02:02:06 2007 +0000 H. Peter Anvin 
  * Fixes for 64-bit ndisasm.
Mon Apr 16 01:21:29 2007 +0000 H. Peter Anvin 
  * Use + instead of * for extension; it feels cleaner with the new meaning.
Mon Apr 16 01:18:30 2007 +0000 H. Peter Anvin 
  * Initial 64-bit support for ndisasm.  Still a work in progress.
Sun Apr 15 23:12:17 2007 +0000 H. Peter Anvin 
  * Clean up the 64-bitification of regs.dat for 64-bit ndisasm support
Sun Apr 15 23:10:26 2007 +0000 H. Peter Anvin 
  * Remove @GCCFLAGS@
Sun Apr 15 23:09:23 2007 +0000 H. Peter Anvin 
  * CR8 is not special in any way as far as the assembler is concerned.
Sun Apr 15 23:03:28 2007 +0000 H. Peter Anvin 
  * Get rid of @GCCFLAGS@
Sun Apr 15 22:45:25 2007 +0000 H. Peter Anvin 
  * Cleaner way to add gcc options
Sun Apr 15 22:08:30 2007 +0000 Keith Kanios 
  * Fixed distinction between RIP relative symbols and immediate values.
Sun Apr 15 05:40:43 2007 +0000 H. Peter Anvin 
  * Fix the register number for CR7 (it was using the same number as CR15).
Sun Apr 15 05:32:18 2007 +0000 H. Peter Anvin 
  * More perl-like idioms for generating regdis.c
Sun Apr 15 01:37:13 2007 +0000 Keith Kanios 
  * Fixed regdis.c generation.
Sat Apr 14 18:54:52 2007 +0000 Keith Kanios 
  * Added DQ constants for all BITS modes.
Sat Apr 14 08:03:02 2007 +0000 H. Peter Anvin 
  * outmacho.c: stylistic cleanups
Sat Apr 14 03:52:05 2007 +0000 Keith Kanios 
  * Fixed support for DQ constants in long mode.
Sat Apr 14 03:44:31 2007 +0000 Keith Kanios 
  * Hopefully it is actually fixed this time :P
Sat Apr 14 01:49:07 2007 +0000 Keith Kanios 
  * Fixed structure initialization issue.
Sat Apr 14 01:44:35 2007 +0000 Keith Kanios 
  * Refixed uninitialized data.
Sat Apr 14 01:40:24 2007 +0000 Keith Kanios 
  * Fixed uninitialized structure data.
Sat Apr 14 01:24:14 2007 +0000 Keith Kanios 
  * c99 printf/fprintf compliance.
Sat Apr 14 00:46:25 2007 +0000 Keith Kanios 
  * Placated unreferenced types.
Sat Apr 14 00:10:59 2007 +0000 Keith Kanios 
  * c99 printf/fprintf compliance.
Fri Apr 13 23:09:18 2007 +0000 Keith Kanios 
  * Added outmacho.* to static makefile.
Fri Apr 13 22:24:46 2007 +0000 Keith Kanios 
  * Fixed REGRIP -> RIPREG to match regs.dat.
Fri Apr 13 22:07:53 2007 +0000 Keith Kanios 
  * Fixed obj_fwrite() declaration to match "static" definition.
Fri Apr 13 22:03:24 2007 +0000 Keith Kanios 
  * Added appropriate "void" prototypes.
Fri Apr 13 22:00:42 2007 +0000 Keith Kanios 
  * Replaced str(n)casecmp with more standard str(n)icmp.
Fri Apr 13 20:06:41 2007 +0000 H. Peter Anvin 
  * AIf we have config.h, we should actually include it!!
Fri Apr 13 19:59:20 2007 +0000 H. Peter Anvin 
  * When compiling with gcc, compile with -W -Wall for maximum warnings.
Fri Apr 13 19:58:42 2007 +0000 H. Peter Anvin 
  * Macroize any compiler-specific code; macros defined in "compiler.h"
Fri Apr 13 16:47:53 2007 +0000 Keith Kanios 
  * Fixed distinction between char and int8_t data types.
Fri Apr 13 01:17:45 2007 +0000 Keith Kanios 
  * Comment "REX.I" should have been "REX.X"
Fri Apr 13 00:52:54 2007 +0000 Keith Kanios 
  * Fixed c99 data-types after removal of typedefs.
Fri Apr 13 00:43:50 2007 +0000 Keith Kanios 
  * Added Dev-Cpp Makefile
Fri Apr 13 00:38:29 2007 +0000 Keith Kanios 
  * *** empty log message ***
Thu Apr 12 17:58:02 2007 +0000 H. Peter Anvin 
  * Remove redundant inclusion of <inttypes.h>
Thu Apr 12 16:54:50 2007 +0000 H. Peter Anvin 
  * Remove obsolete types; add <inttypes.h> where needed; header fixes
Thu Apr 12 16:25:58 2007 +0000 H. Peter Anvin 
  * autogen.sh script to create configure, et al.
Thu Apr 12 16:23:11 2007 +0000 Keith Kanios 
  * Fixed c99 support for RDOFF Tools
Thu Apr 12 16:12:09 2007 +0000 H. Peter Anvin 
  * outmacho.c: Don't assume __builtin_ctzl exists for gcc < 4

Mon Nov 12 22:05:31 2007 -0800 H. Peter Anvin 
  * BR 1828866: fix handling of LAR/LSL
Mon Nov 12 21:57:00 2007 -0800 H. Peter Anvin 
  * Better (but not *good!*) handling of 64-bit addressing in ndisasm
Mon Nov 12 21:02:33 2007 -0800 H. Peter Anvin 
  * Fix disassembly of XCHG
Mon Nov 12 20:18:33 2007 -0800 H. Peter Anvin 
  * Test of XCHG
Mon Nov 12 20:18:05 2007 -0800 H. Peter Anvin 
  * Fix handling of XCHG in 64-bit mode
Mon Nov 12 19:36:13 2007 -0800 H. Peter Anvin 
  * More \321 -> \324 bug fixes
Mon Nov 12 18:26:31 2007 -0800 H. Peter Anvin 
  * float.c: all warnings and errors are pass 1 only
Sat Nov 10 21:55:19 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives.
Sat Nov 10 17:52:23 2007 -0800 Charles Crayne 
  * Clean up a few more 32-bit bottlenecks
Fri Nov 9 16:37:41 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives
Fri Nov 9 16:33:54 2007 -0800 Charles Crayne 
  * Merge branch 'master' of /home/chuck/development/gitnasm/
Fri Nov 9 16:25:43 2007 -0800 Charles Crayne 
  * Update documentation for stack relative directives
Fri Nov 9 14:44:02 2007 -0800 H. Peter Anvin 
  * Don't combine type and size into a single argument
Thu Nov 8 22:11:14 2007 -0800 Charles Crayne 
  * Add flat64 to %stacksize choices
Thu Nov 8 20:43:22 2007 -0800 H. Peter Anvin 
  * Fix building under OpenWatcom
Thu Nov 8 20:29:37 2007 -0800 H. Peter Anvin 
  * ps2pdf: remove -dOptimize=true
Thu Nov 8 20:21:41 2007 -0800 H. Peter Anvin 
  * No binary files left in the source distro; unbreak release script
Thu Nov 8 20:01:11 2007 -0800 H. Peter Anvin 
  * BR 1828103: Fix %arg and %local
Thu Nov 8 19:34:01 2007 -0800 H. Peter Anvin 
  * nasmlib.c: prefix_name(): use the elements() macro
Thu Nov 8 19:30:22 2007 -0800 H. Peter Anvin 
  * Move elements() to nasmlib.h
Thu Nov 8 19:15:33 2007 -0800 H. Peter Anvin 
  * constipate the "str" argument to bsi() and bsii()
Wed Nov 7 19:03:46 2007 -0800 Charles Crayne 
  * Upgrade RAA functions to hold 64-bit data.
Tue Nov 6 21:48:12 2007 -0800 Charles Crayne 
  * Pass 64-bit instruction lengths to back-ends.
Tue Nov 6 18:27:23 2007 -0800 Charles Crayne 
  * Prepare for 64-bit instruction lengths
Mon Nov 5 21:49:49 2007 -0800 Charles Crayne 
  * Disambiguate error messages
Mon Nov 5 17:19:32 2007 -0800 Charles Crayne 
  * Upgrade label functions to 64-bit
Sun Nov 4 21:10:42 2007 -0800 H. Peter Anvin 
  * Permit opcode names as labels as long as they are followed by a colon
Sun Nov 4 15:28:30 2007 -0800 Charles Crayne 
  * Make warning limit valid for both i386 and x86_64
Sat Nov 3 22:06:13 2007 -0700 Charles Crayne 
  * Warn on out of bounds EA displacements
Thu Nov 1 15:08:27 2007 -0700 H. Peter Anvin 
  * Treat info files as binary when creating xdoc distro file
Thu Nov 1 15:07:42 2007 -0700 H. Peter Anvin 
  * Remove obsolete binary files from the distribution
Thu Nov 1 14:53:32 2007 -0700 H. Peter Anvin 
  * Move declarations before statements
Wed Oct 31 23:37:35 2007 -0700 H. Peter Anvin 
  * NASM 0.99.06
Wed Oct 31 23:37:19 2007 -0700 H. Peter Anvin 
  * Script to tag the tree for release
Wed Oct 31 10:59:26 2007 -0700 H. Peter Anvin 
  * Even more "riprel" tests
Tue Oct 30 01:17:57 2007 -0700 H. Peter Anvin 
  * floatx.asm: add tests for "rounds up to smallest denorm"
Tue Oct 30 01:13:27 2007 -0700 H. Peter Anvin 
  * Run "make alldeps"
Tue Oct 30 01:13:09 2007 -0700 H. Peter Anvin 
  * float.c: handle round-up-to-denorm correctly.
Tue Oct 30 00:59:27 2007 -0700 H. Peter Anvin 
  * Exhaustive test for 8-bit floating point values
Mon Oct 29 23:12:47 2007 -0700 H. Peter Anvin 
  * Clean up the handing of operands in assemble.c
Mon Oct 29 22:56:08 2007 -0700 H. Peter Anvin 
  * Don't warn for segmented references
Mon Oct 29 20:20:12 2007 -0700 H. Peter Anvin 
  * Use a 32-bit floating-point limb size; support 8-bit float
Mon Oct 29 18:24:59 2007 -0700 Charles Crayne 
  * Reduce severity of redundant prefixes from error to warning.
Sun Oct 28 23:23:24 2007 -0700 H. Peter Anvin 
  * Test of some addressing modes in 64-bit mode.
Sun Oct 28 23:21:46 2007 -0700 H. Peter Anvin 
  * Fix bogus flagging of effective addresses as invalid
Sun Oct 28 23:10:34 2007 -0700 H. Peter Anvin 
  * Actually shut up the warning in rdfload.c
Sun Oct 28 22:04:42 2007 -0700 H. Peter Anvin 
  * Clean up stealth whitespace
Sun Oct 28 22:04:00 2007 -0700 H. Peter Anvin 
  * Fix warning about cast to pointer in rdfload.c
Sun Oct 28 22:04:00 2007 -0700 H. Peter Anvin 
  * 64-bit addressing and prefix handling changes
Sun Oct 28 15:29:54 2007 -0700 Charles Crayne 
  * Adjust stabs symbol index to match symbol table.
Fri Oct 26 21:38:02 2007 -0700 H. Peter Anvin 
  * readnum(): handle prefix-suffix collision like "0h"
Fri Oct 26 18:49:29 2007 -0700 H. Peter Anvin 
  * Better handling of platforms which hide "extended" functionality
Wed Oct 24 15:51:40 2007 -0700 Charles Crayne 
  * Merge branch 'master' of /home/chuck/development/gitnasm/
Wed Oct 24 15:30:17 2007 -0700 Charles Crayne 
  * Update sections about debug info formats
Wed Oct 24 15:29:51 2007 -0700 H. Peter Anvin 
  * Fix the handling of floating-point tokens in the preprocessor
Tue Oct 23 19:28:39 2007 -0700 Charles Crayne 
  * Fix bugs item #1817677
Tue Oct 23 00:08:58 2007 -0700 H. Peter Anvin 
  * Slightly simplify the radix-detection code
Mon Oct 22 19:48:06 2007 -0700 H. Peter Anvin 
  * Unbreak particularly tricky hex constants
Mon Oct 22 19:37:36 2007 -0700 H. Peter Anvin 
  * Decimal floating point can also start with 0. 0e 0E
Mon Oct 22 17:34:10 2007 -0700 H. Peter Anvin 
  * Support binary and octal floating-point
Mon Oct 22 16:53:48 2007 -0700 H. Peter Anvin 
  * More consistent handling of radix letters
Sun Oct 21 15:33:01 2007 -0700 H. Peter Anvin 
  * float.c: correct exponent capping
Sun Oct 21 14:21:43 2007 -0700 Charles Crayne 
  * Clean up elf symbol table section
Fri Oct 19 18:33:57 2007 -0700 H. Peter Anvin 
  * Allow $-prefixed hexadecimal FP as an alternative to 0x
Fri Oct 19 14:43:22 2007 -0700 H. Peter Anvin 
  * Scripts to remove stealth whitespace
Fri Oct 19 14:42:29 2007 -0700 H. Peter Anvin 
  * Formatting: kill off "stealth whitespace"
Fri Oct 19 14:26:52 2007 -0700 H. Peter Anvin 
  * test/floatx.asm: fix test case
Fri Oct 19 14:19:52 2007 -0700 H. Peter Anvin 
  * uscore.asm: Fix test case
Fri Oct 19 14:17:51 2007 -0700 H. Peter Anvin 
  * float.c: mark read_exponent() static
Fri Oct 19 14:10:35 2007 -0700 H. Peter Anvin 
  * Don't confuse suffixed hexadecimal with floating-point
Fri Oct 19 13:17:24 2007 -0700 H. Peter Anvin 
  * Anchor filename locations in .gitignore
Fri Oct 19 13:16:51 2007 -0700 H. Peter Anvin 
  * test/Makefile: Use -Ox instead of -O999
Fri Oct 19 13:14:06 2007 -0700 H. Peter Anvin 
  * Test of underscored constants
Fri Oct 19 13:10:46 2007 -0700 H. Peter Anvin 
  * Allow underscores in numbers; better detection of FP
Fri Oct 19 10:52:31 2007 -0700 H. Peter Anvin 
  * Modernize nasm.spec.in and make it closer to the Fedora version
Thu Oct 18 23:33:06 2007 -0700 Charles Crayne 
  * Suppress datarootdir warnings from configure
Thu Oct 18 21:17:20 2007 -0700 Charles Crayne 
  * Suppress signedness warnings in disassembler
Thu Oct 18 19:14:08 2007 -0700 H. Peter Anvin 
  * Cleaner solution for MinGW handling of __STRICT_ANSI__
Thu Oct 18 19:14:08 2007 -0700 H. Peter Anvin 
  * configure: Undefine __STRICT_ANSI__ for mingw's benefit
Thu Oct 18 19:14:07 2007 -0700 H. Peter Anvin 
  * Fix invocation of readnum()
Thu Oct 18 19:02:42 2007 -0700 Charles Crayne 
  * Suppress a few signedness warnings
Thu Oct 18 17:04:10 2007 -0700 root 
  * Avoid unnecessary warning on redefinition of section (bug 801180)
Wed Oct 17 17:55:45 2007 -0700 Charles Crayne 
  * Generate stabs entries for any executable section
Tue Oct 16 22:59:09 2007 -0700 H. Peter Anvin 
  * NASM 0.99.05
Tue Oct 16 15:46:04 2007 -0700 H. Peter Anvin 
  * Tests of obscenely large exponents
Tue Oct 16 14:42:32 2007 -0700 H. Peter Anvin 
  * Comma-separate contents of __FLOAT__
Tue Oct 16 14:40:27 2007 -0700 H. Peter Anvin 
  * Implement floating-point option control directive
Tue Oct 16 11:48:07 2007 -0700 H. Peter Anvin 
  * Floating-point warning fixes; fix round-to-overflow
Tue Oct 16 11:32:58 2007 -0700 H. Peter Anvin 
  * Handle rounding of denorms correctly; make fp overflow a warning
Tue Oct 16 10:35:02 2007 -0700 H. Peter Anvin 
  * Additional entries for .gitignore
Tue Oct 16 10:32:57 2007 -0700 H. Peter Anvin 
  * Refactor floating-point formatting code; fix 80-bit denorms
Tue Oct 16 10:31:16 2007 -0700 H. Peter Anvin 
  * Add 1.5 as a test case: representative of an exact fraction
Mon Oct 15 20:06:06 2007 -0700 H. Peter Anvin 
  * Recognize 'd', 't' and 'y' as radix suffixes
Mon Oct 15 19:53:10 2007 -0700 H. Peter Anvin 
  * Fix FISTTP opcodes (BR 689695)
Mon Oct 15 19:46:32 2007 -0700 H. Peter Anvin 
  * New floating-point conversion routines
Mon Oct 15 17:48:43 2007 -0700 H. Peter Anvin 
  * Add testnos3 from the gdtoa package (floating-point test)
Sat Oct 13 23:19:21 2007 -0700 H. Peter Anvin 
  * .gitignore file doesn't need to be in the release file
Sat Oct 13 23:17:41 2007 -0700 H. Peter Anvin 
  * Add .gitignore file so "git status" produces something sane
Sat Oct 13 23:12:46 2007 -0700 H. Peter Anvin 
  * autoconf: drop AC_USE_SYSTEM_EXTENSIONS to support autoconf 2.59
Sat Oct 13 07:09:22 2007 -0700 Keith Kanios 
  * Fix 32-bit types in preproc.c and eval.c
Thu Oct 11 20:32:33 2007 -0700 Charles Crayne 
  * Must define types before using them
Thu Oct 11 13:42:09 2007 -0700 H. Peter Anvin 
  * preproc.c: move smacro define/undef to separate functions
Thu Oct 11 13:38:38 2007 -0700 H. Peter Anvin 
  * preproc.c: PP_DEFINE and PP_XDEFINE are case-sensitive
Thu Oct 11 12:52:03 2007 -0700 H. Peter Anvin 
  * preproc.c: normalize the handling of case sensitivity
Thu Oct 11 12:51:06 2007 -0700 H. Peter Anvin 
  * Define macros necessary for <inttypes.h> on C++
Thu Oct 11 10:12:58 2007 -0700 H. Peter Anvin 
  * More "bool" fixes
Thu Oct 11 10:11:57 2007 -0700 H. Peter Anvin 
  * preproc.c: allow 64-bit repeat counts
Thu Oct 11 10:06:19 2007 -0700 H. Peter Anvin 
  * preproc.c: For an SMacro, in_progress really is a boolean (no %rep)
Thu Oct 11 00:05:57 2007 -0700 H. Peter Anvin 
  * Additional uses of bool and enum
Thu Oct 11 00:05:57 2007 -0700 H. Peter Anvin 
  * preproc.c: MMacro.in_progress is not a boolean
Wed Oct 10 18:07:51 2007 -0700 H. Peter Anvin 
  * saa_fread/fwrite: when seeking, must set [rw]ptr as well
Wed Oct 10 14:58:45 2007 -0700 H. Peter Anvin 
  * Use the compiler-provided booleans if available, otherwise emulate
Wed Oct 10 14:55:14 2007 -0700 H. Peter Anvin 
  * owlinux.mak: don't clean things we won't be able to
Wed Oct 10 14:29:53 2007 -0700 H. Peter Anvin 
  * configure.in: looks like we need autoconf 2.61 :(
Wed Oct 10 14:06:59 2007 -0700 H. Peter Anvin 
  * Create option -Ox to tell NASM to do unlimited passes
Mon Oct 8 19:26:57 2007 -0700 H. Peter Anvin 
  * Revert "floatb.asm: fix broken testcase"
Mon Oct 8 18:39:24 2007 -0700 H. Peter Anvin 
  * floatb.asm: fix broken testcase
Mon Oct 8 12:41:00 2007 -0700 H. Peter Anvin 
  * saa_rstruct: fix overrun check
Mon Oct 8 12:12:23 2007 -0700 H. Peter Anvin 
  * Add Frank's floattest.asm test file
Sun Oct 7 21:13:14 2007 -0700 H. Peter Anvin 
  * saa_fpwrite: initializing "len" should be part of the loop
Sun Oct 7 18:46:57 2007 -0700 Charles Crayne 
  * Fix infinite loop in function saa_fpwrite
Fri Oct 5 17:44:16 2007 -0700 H. Peter Anvin 
  * zerobyte.asm: use a real instruction to avoid confusing ndisasm
Fri Oct 5 17:42:31 2007 -0700 H. Peter Anvin 
  * zerobyte.asm: add test cases for non-initial \170 uses
Fri Oct 5 17:29:01 2007 -0700 H. Peter Anvin 
  * Check in the proper zerobyte test
Fri Oct 5 17:04:32 2007 -0700 H. Peter Anvin 
  * Emit REX prefix before literal zero (\170)
Fri Oct 5 17:01:15 2007 -0700 H. Peter Anvin 
  * LICENSE: Break long line
Fri Oct 5 14:36:03 2007 -0700 H. Peter Anvin 
  * Add test for problematic floats
Thu Oct 4 23:51:08 2007 -0700 H. Peter Anvin 
  * floatx.asm: add Inf and NaN to the boundary condition tests
Thu Oct 4 23:09:19 2007 -0700 H. Peter Anvin 
  * floatx.asm: add specific tests for exponent boundary conditions
Thu Oct 4 22:51:08 2007 -0700 H. Peter Anvin 
  * float.c: correct the exponent
Thu Oct 4 15:18:23 2007 -0700 H. Peter Anvin 
  * Additional rules in test/Makefile
Thu Oct 4 13:42:56 2007 -0700 H. Peter Anvin 
  * Rewrite the handling of SAA's to allow random access
Wed Oct 3 21:30:57 2007 -0700 H. Peter Anvin 
  * Change cloc_t to struct location, and reorder the members
Wed Oct 3 21:24:51 2007 -0700 H. Peter Anvin 
  * BR 1352920: change loc_t -> cloc_t
Wed Oct 3 21:22:16 2007 -0700 H. Peter Anvin 
  * BR 1352920: Handle upper case %line
Wed Oct 3 17:40:12 2007 -0700 H. Peter Anvin 
  * Use autoconf to request feature macros
Tue Oct 2 22:04:15 2007 -0700 H. Peter Anvin 
  * preproc.c: constipation
Tue Oct 2 21:57:27 2007 -0700 H. Peter Anvin 
  * make alldeps
Tue Oct 2 21:53:51 2007 -0700 H. Peter Anvin 
  * Portability fixes
Tue Oct 2 21:13:18 2007 -0700 H. Peter Anvin 
  * Run "make alldeps".
Tue Oct 2 17:40:00 2007 -0700 H. Peter Anvin 
  * Use the crc64 we already use as the perfect hash function prehash
Tue Oct 2 15:09:33 2007 -0700 H. Peter Anvin 
  * insns.dat: add systematic names for the hinting NOPs (0F18-0F1F)
Mon Oct 1 11:28:32 2007 -0700 H. Peter Anvin 
  * Unspecified files are null strings, not null pointers
Mon Oct 1 11:26:31 2007 -0700 H. Peter Anvin 
  * Check for the most basic filename overlaps
Sun Sep 30 22:15:36 2007 -0700 Charles Crayne 
  * modified:   nasm.1 to add newer command line options
Fri Sep 28 21:27:41 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Fri Sep 28 20:17:12 2007 -0700 H. Peter Anvin 
  * configure.in: AC_SUBST_FILE should have been AC_SUBST
Fri Sep 28 17:17:20 2007 -0700 H. Peter Anvin 
  * Unbreak relative references to immediate addresses
Fri Sep 28 15:16:47 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Fri Sep 28 12:01:55 2007 -0700 H. Peter Anvin 
  * lib/vsnprintf.c: correct boundary conditions
Fri Sep 28 10:50:20 2007 -0700 H. Peter Anvin 
  * Add substitutes for snprintf() and vsnprintf()
Fri Sep 28 02:03:41 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Thu Sep 27 21:35:04 2007 -0700 H. Peter Anvin 
  * Exclude config.h from the dependency list for the canned makefiles
Thu Sep 27 21:12:17 2007 -0700 H. Peter Anvin 
  * version.pl: Add support for daily snapshot releases
Thu Sep 27 19:46:55 2007 -0700 H. Peter Anvin 
  * Add Makefile for Linux -> DOS, Win32, OS/2 using OpenWatcom
Wed Sep 26 19:57:07 2007 -0700 H. Peter Anvin 
  * Add Makefile for OpenWatcom (DOS, OS/2 or Win32 output)
Wed Sep 26 17:00:18 2007 -0700 H. Peter Anvin 
  * Test for various addressing modes in 64-bit mode
Wed Sep 26 15:19:28 2007 -0700 H. Peter Anvin 
  * nasm option reshuffling, -E -> -Z
Tue Sep 25 23:57:21 2007 -0400 Frank Kotler 
  * Version 0.99.04
Tue Sep 25 20:36:45 2007 -0700 H. Peter Anvin 
  * nasmdoc: corrections on 64-bit immediates/displacements
Tue Sep 25 16:02:21 2007 -0700 H. Peter Anvin 
  * nasmdoc: shorten lines which are too long
Tue Sep 25 16:01:07 2007 -0700 H. Peter Anvin 
  * Document NASM behaviour for 64-bit immediates and displacements
Tue Sep 25 15:44:40 2007 -0700 H. Peter Anvin 
  * test/movimm.asm: add optimizable forms
Tue Sep 25 15:41:19 2007 -0700 H. Peter Anvin 
  * assemble.c: clean up whitespace
Tue Sep 25 15:40:36 2007 -0700 H. Peter Anvin 
  * Correct the handling of "MOV" with immediate in 64-bit mode
Tue Sep 25 15:39:42 2007 -0700 H. Peter Anvin 
  * Test of immediate handling on 64-bit mode
Tue Sep 25 14:27:34 2007 -0700 H. Peter Anvin 
  * Add nasm_zalloc() to nasmlib.c
Tue Sep 25 14:26:03 2007 -0700 H. Peter Anvin 
  * Fix BR 1490407: size of the second operand of LAR/LSL
Tue Sep 25 14:11:29 2007 -0700 H. Peter Anvin 
  * Fix BR 1490407: size of the second operand of LAR/LSL
Tue Sep 25 13:34:55 2007 -0700 H. Peter Anvin 
  * Makefile.in: make "make install" create directories
Tue Sep 25 08:48:37 2007 -0700 H. Peter Anvin 
  * Fix BR 1445441: uninitialized use of "error_file"
Mon Sep 24 21:33:17 2007 -0700 H. Peter Anvin 
  * preproc.c: fix the loop in %undef
Mon Sep 24 20:53:48 2007 -0700 H. Peter Anvin 
  * float.c: clear off uninitialized warning
Mon Sep 24 17:02:41 2007 -0700 H. Peter Anvin 
  * outcoff: set the "virtual size field" to zero (BR 1351586)
Mon Sep 24 15:56:02 2007 -0700 H. Peter Anvin 
  * insns.dat: SMINT - mark ND, DMINT - fix opcode
Mon Sep 24 15:55:20 2007 -0700 H. Peter Anvin 
  * 0F0F is a 3Dnow! prefix; remove from prefix list
Mon Sep 24 15:48:09 2007 -0700 H. Peter Anvin 
  * Additional compaction missed by script
Mon Sep 24 15:42:53 2007 -0700 H. Peter Anvin 
  * insns.dat: machine-generated compaction mmx/xmmreg,mem -> mmx/xmmrm
Mon Sep 24 13:54:00 2007 -0700 H. Peter Anvin 
  * nasmdoc: grammar fix
Mon Sep 24 13:44:02 2007 -0700 H. Peter Anvin 
  * nasmdoc: remove stray periods
Mon Sep 24 13:42:09 2007 -0700 H. Peter Anvin 
  * test/Makefile: make a bit more useful
Mon Sep 24 13:41:58 2007 -0700 H. Peter Anvin 
  * Implement the -MG option (SF RFE 1564264)
Mon Sep 24 12:52:09 2007 -0700 H. Peter Anvin 
  * nasmdoc: clarify __float*__ example
Mon Sep 24 12:44:38 2007 -0700 H. Peter Anvin 
  * nasmdoc: document the __float*__ operators
Mon Sep 24 12:30:54 2007 -0700 H. Peter Anvin 
  * Support __float*__ for floating-point numbers in expressions
Mon Sep 24 10:51:07 2007 -0700 H. Peter Anvin 
  * eval.c: replace sequence of ifs with switch
Mon Sep 24 10:50:23 2007 -0700 H. Peter Anvin 
  * tokhash: allow a bit smarter pattern matching
Sat Sep 22 22:35:28 2007 -0700 H. Peter Anvin 
  * Implement INVLPGA according to the documentation
Sat Sep 22 22:02:34 2007 -0700 H. Peter Anvin 
  * Reformat insns.dat to uniform column width
Sat Sep 22 21:50:03 2007 -0700 H. Peter Anvin 
  * Simple test for 0x67 prefixes
Sat Sep 22 21:49:51 2007 -0700 H. Peter Anvin 
  * Auto-generate 0x67 prefixes without the need for \30x codes
Sat Sep 22 21:47:13 2007 -0700 H. Peter Anvin 
  * Make test/Makefile a bit more useful
Sat Sep 22 21:29:41 2007 -0700 H. Peter Anvin 
  * Add TY_OWORD for "DO" output
Sat Sep 22 19:52:11 2007 -0700 H. Peter Anvin 
  * LDDQU needs \301 (BR 1103549)
Sat Sep 22 19:51:13 2007 -0700 H. Peter Anvin 
  * RDTSCP and INVLPGA aren't 64-bit specific
Sat Sep 22 19:40:37 2007 -0700 H. Peter Anvin 
  * Cyrix GX1 instructions: BBx_RESET, CPU_READ, CPU_WRITE
Sat Sep 22 19:28:14 2007 -0700 H. Peter Anvin 
  * Centaur XSHA1, XSHA256, MONTMUL
Sat Sep 22 19:20:56 2007 -0700 H. Peter Anvin 
  * Implement Centaur's XCRYPT instructions
Sat Sep 22 19:13:05 2007 -0700 H. Peter Anvin 
  * Add Geode LX (AMD's Cyrix-derived core) instructions
Sat Sep 22 19:05:11 2007 -0700 H. Peter Anvin 
  * Add the GETSEC instruction for Intel SMX
Sat Sep 22 18:59:18 2007 -0700 H. Peter Anvin 
  * Add the AMD SSE4a and LZCNT instructions
Sat Sep 22 18:23:20 2007 -0700 H. Peter Anvin 
  * Tag UMOV as ND (no disassembly) to avoid collision
Sat Sep 22 18:20:49 2007 -0700 H. Peter Anvin 
  * Disallow optimizing by less than 5 passes.
Sat Sep 22 17:45:45 2007 -0700 H. Peter Anvin 
  * BR 1783117: Document that %+ needs a space after it, and fix crash
Sat Sep 22 16:44:56 2007 -0700 H. Peter Anvin 
  * nasm.spec.in: minor fixes
Sat Sep 22 16:38:25 2007 -0700 H. Peter Anvin 
  * release script: handle stricter CLI parsing for "git tag"
Sat Sep 22 16:35:11 2007 -0700 H. Peter Anvin 
  * Update nasm.spec.in and make it handle rc releases
Sat Sep 22 16:19:19 2007 -0700 H. Peter Anvin 
  * version.pl: support version numbers of the form X.Y[.Z]rcW
Thu Sep 20 21:33:43 2007 -0700 Charles Crayne 
  * Merge branch 'master' of git+ssh://ccrayne@repo.or.cz/srv/git/nasm
Thu Sep 20 21:12:33 2007 -0700 Charles Crayne 
  * 	modified:   misc/release to fix bug in removing .git
Wed Sep 19 21:41:43 2007 -0700 H. Peter Anvin 
  * Merge branch 'master' of git+ssh://repo.or.cz/srv/git/nasm
Wed Sep 19 21:41:27 2007 -0700 H. Peter Anvin 
  * Update manual pages
Wed Sep 19 21:41:02 2007 -0700 H. Peter Anvin 
  * Remove limit on number of sync points
Wed Sep 19 21:40:37 2007 -0700 H. Peter Anvin 
  * Make nasm_malloc() et al available from inside ndisasm
Wed Sep 19 21:07:32 2007 -0400 Frank Kotler 
  * Version 0.99.03
Wed Sep 19 21:06:59 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Wed Sep 19 16:22:03 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/sse5'
Wed Sep 19 16:15:22 2007 -0700 H. Peter Anvin 
  * test/Makefile: make a bit more useful
Tue Sep 18 22:54:40 2007 -0700 H. Peter Anvin 
  * Slightly optimize the interface to nasm_token_hash()
Wed Sep 19 01:34:55 2007 -0400 Frank Kotler 
  * Merge branch 'master' of git+ssh://fbkotler@repo.or.cz/srv/git/nasm
Tue Sep 18 22:23:42 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Tue Sep 18 22:22:49 2007 -0700 H. Peter Anvin 
  * elf64: fix 32-bit truncations
Tue Sep 18 22:08:04 2007 -0700 H. Peter Anvin 
  * Document Infinity and NaN
Tue Sep 18 21:55:56 2007 -0700 H. Peter Anvin 
  * Support generating NaNs and infinities
Tue Sep 18 19:12:26 2007 -0700 H. Peter Anvin 
  * Update documentation
Tue Sep 18 18:37:36 2007 -0700 H. Peter Anvin 
  * Simple test for hexadecimal floating-point numbers
Tue Sep 18 18:33:17 2007 -0700 H. Peter Anvin 
  * Fix error-reporting in hexadecimal floating-point numbers
Tue Sep 18 18:31:26 2007 -0700 H. Peter Anvin 
  * Support C99-style hexadecimal floating point.
Tue Sep 18 17:50:34 2007 -0700 H. Peter Anvin 
  * Unify all standard IEEE floating-point formats; add 128-bit
Tue Sep 18 17:49:09 2007 -0700 H. Peter Anvin 
  * Fix handling of DO; support unary + for floating-point numbers
Tue Sep 18 16:39:03 2007 -0700 H. Peter Anvin 
  * Support 16-bit IEEE floating point; used in SSE5
Tue Sep 18 15:43:40 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Tue Sep 18 15:43:08 2007 -0700 H. Peter Anvin 
  * Add NOP with argument to the instruction list
Tue Sep 18 15:24:38 2007 -0700 H. Peter Anvin 
  * Remove 0FC2 from list of instruction prefixes
Tue Sep 18 15:08:20 2007 -0700 H. Peter Anvin 
  * Speed up the disassembler by allowing prefixed instruction tables
Tue Sep 18 13:45:12 2007 -0700 H. Peter Anvin 
  * Document oword, do and reso
Tue Sep 18 13:01:32 2007 -0700 H. Peter Anvin 
  * Implement "oword" (128 bits) as a first-class size
Tue Sep 18 12:38:07 2007 -0700 H. Peter Anvin 
  * Change the token prehash function for better convergence
Tue Sep 18 12:23:21 2007 -0700 H. Peter Anvin 
  * SSE5 instruction table
Tue Sep 18 02:06:09 2007 -0400 Frank Kotler 
  * add "const" to output/outdbg.c
Mon Sep 17 18:45:44 2007 -0700 H. Peter Anvin 
  * Disassembler support for SSE5 instructions
Mon Sep 17 17:27:46 2007 -0700 H. Peter Anvin 
  * insns.dat: All SSE5 instructions are AMD
Mon Sep 17 17:25:27 2007 -0700 H. Peter Anvin 
  * Actually generate SSE5 instructions
Mon Sep 17 16:55:04 2007 -0700 H. Peter Anvin 
  * Initial support for generating DREX suffixes
Mon Sep 17 16:31:33 2007 -0700 H. Peter Anvin 
  * Fix a few instances of missing renumbers
Mon Sep 17 16:20:45 2007 -0700 H. Peter Anvin 
  * Enable IF_AR3
Mon Sep 17 15:49:53 2007 -0700 H. Peter Anvin 
  * Merge commit 'origin/master' into sse5
Mon Sep 17 15:49:30 2007 -0700 H. Peter Anvin 
  * Initial support for four arguments per instruction
Mon Sep 17 15:48:32 2007 -0700 H. Peter Anvin 
  * CLFLUSH: Neither an x64 instruction nor AMD
Mon Sep 17 13:56:26 2007 -0700 H. Peter Anvin 
  * Sort dependency lists
Mon Sep 17 13:53:14 2007 -0700 H. Peter Anvin 
  * Cleaner way to handle MSVC's _snprintf() underscore damage
Mon Sep 17 13:19:25 2007 -0700 H. Peter Anvin 
  * test/r13.asm: test special-casing of rbp and r13 in 64-bit mode
Mon Sep 17 13:03:33 2007 -0700 H. Peter Anvin 
  * Additional documentation for 64-bit programming
Sun Sep 16 22:27:07 2007 -0700 H. Peter Anvin 
  * INSTALL: MSVC++ compilation instructions
Sun Sep 16 22:17:29 2007 -0700 H. Peter Anvin 
  * make alldeps: change Mkfiles/Makefile.* to Mkfiles/*.mak
Sun Sep 16 22:16:24 2007 -0700 H. Peter Anvin 
  * Fix Makefile for MSVC++ 2005, delete obsolete Makefiles
Sun Sep 16 22:15:34 2007 -0700 H. Peter Anvin 
  * Minor fixes needed to compile with MSVC++ 2005
Sun Sep 16 18:35:02 2007 -0700 H. Peter Anvin 
  * Run "make alldeps"
Sun Sep 16 18:04:57 2007 -0700 H. Peter Anvin 
  * Switch the preprocessor over to using the hash table library
Sun Sep 16 17:53:17 2007 -0700 H. Peter Anvin 
  * Fix the handling of local labels
Fri Sep 14 18:36:01 2007 -0700 H. Peter Anvin 
  * preproc.c: remove unnecessary int64_t
Fri Sep 14 18:03:29 2007 -0700 H. Peter Anvin 
  * Use the new hash table function library to store labels
Fri Sep 14 09:24:38 2007 -0700 H. Peter Anvin 
  * Define a proper hash table library
Thu Sep 13 18:13:20 2007 -0700 H. Peter Anvin 
  * Simple performance benchmarks: label, macro and token lookups
Thu Sep 13 12:25:32 2007 -0700 H. Peter Anvin 
  * release script: fix final cleanup
Thu Sep 13 12:22:00 2007 -0700 H. Peter Anvin 
  * Modify release script for a git-centric world
Thu Sep 13 11:06:42 2007 -0700 H. Peter Anvin 
  * pptok.c: don't insist on C99 compiler behaviour
Wed Sep 12 22:02:06 2007 -0700 H. Peter Anvin 
  * Fix literal F2 and F3 prefixes
Wed Sep 12 21:58:51 2007 -0700 H. Peter Anvin 
  * Add (untested!) SSSE3, SSE4.1, SSE4.2 instructions
Wed Sep 12 21:06:36 2007 -0700 H. Peter Anvin 
  * Add support for Tejas New Instructions (SSSE3)
Wed Sep 12 21:05:06 2007 -0700 H. Peter Anvin 
  * Remove $Id$ tags (useless with git)
Wed Sep 12 21:04:58 2007 -0700 H. Peter Anvin 
  * Use rm32 operands for VMREAD/VMWRITE
Wed Sep 12 21:04:51 2007 -0700 H. Peter Anvin 
  * Macros for SSSE3/SSE4 instruction sets
Wed Sep 12 21:04:39 2007 -0700 H. Peter Anvin 
  * Support r/m operands for non-integer types
Wed Sep 12 20:27:41 2007 -0700 H. Peter Anvin 
  * Use enumerations where practical to ease debugging
Wed Sep 12 17:02:55 2007 +0000 H. Peter Anvin 
  * pptok.c: quick-and-dirty downcasing during prehashing
Wed Sep 12 16:55:57 2007 +0000 H. Peter Anvin 
  * phash: Tell the user when the graph is OK
Wed Sep 12 05:18:20 2007 +0000 H. Peter Anvin 
  * pptok.c: handle holes in the pp_directives array
Wed Sep 12 04:20:08 2007 +0000 H. Peter Anvin 
  * preproc.c: adjust whitespace
Wed Sep 12 04:18:37 2007 +0000 H. Peter Anvin 
  * More automation in the preprocessor conditionals handling
Wed Sep 12 02:13:39 2007 +0000 H. Peter Anvin 
  * pptok.c: fix spacing
Wed Sep 12 02:12:07 2007 +0000 H. Peter Anvin 
  * Generate automatically correct tests for %if and %elif
Wed Sep 12 01:34:19 2007 +0000 H. Peter Anvin 
  * Run "make alldeps"; add dependencies missing from the previous checkin
Wed Sep 12 01:29:43 2007 +0000 H. Peter Anvin 
  * Use a perfect hash to look up preprocessor directives
Wed Sep 12 01:27:53 2007 +0000 H. Peter Anvin 
  * phash: Be a bit more aggressive about trying to make a small hash
Wed Sep 12 00:22:29 2007 +0000 H. Peter Anvin 
  * Add RCXZ as a known preprocessor condition
Tue Sep 11 23:57:23 2007 +0000 H. Peter Anvin 
  * doc: add some cross-references
Tue Sep 11 23:52:01 2007 +0000 H. Peter Anvin 
  * Feeble attempt at updating the documentation; remove Appendix B
Tue Sep 11 22:44:03 2007 +0000 H. Peter Anvin 
  * Handle instructions which can have both REX.W and OSP
Tue Sep 11 22:14:18 2007 +0000 H. Peter Anvin 
  * Use enums to make debugging easier
Tue Sep 11 22:13:17 2007 +0000 H. Peter Anvin 
  * ndisasm: handle \366 codes, prefer unprefixed instructions
Tue Sep 11 22:00:34 2007 +0000 H. Peter Anvin 
  * Simplify tokens.dat slightly
Tue Sep 11 04:26:44 2007 +0000 H. Peter Anvin 
  * Quiet gcc warning about uninitialized variables
Tue Sep 11 04:16:57 2007 +0000 H. Peter Anvin 
  * Make the big instruction arrays "const"
Mon Sep 10 23:32:05 2007 +0000 H. Peter Anvin 
  * Use an actual enum for the opcode
Mon Sep 10 23:30:21 2007 +0000 H. Peter Anvin 
  * Fix order of token arguments
Mon Sep 10 18:59:26 2007 +0000 H. Peter Anvin 
  * assemble.c: correct special handing of ESP/RSP
Mon Sep 10 18:59:01 2007 +0000 H. Peter Anvin 
  * tokhash: correct duplicate-token test
Mon Sep 10 18:58:40 2007 +0000 H. Peter Anvin 
  * tokhash: adjust table types to reduce size
Mon Sep 10 18:55:52 2007 +0000 H. Peter Anvin 
  * Fix the MMXREG and XMMREG flags definitions.
Wed Sep 5 06:48:38 2007 +0000 H. Peter Anvin 
  * nasm.spec.in: Copyright -> License
Wed Sep 5 06:40:51 2007 +0000 H. Peter Anvin 
  * Fix "make tar"; useful for RPM testing
Wed Sep 5 06:24:43 2007 +0000 H. Peter Anvin 
  * Remove obsolete Serial: construct; we shouldn't need it anyway.
Tue Sep 4 01:29:43 2007 +0000 Chuck Crayne 
  * Provide 64-bit support for ORG directive
Sun Sep 2 16:37:03 2007 +0000 H. Peter Anvin 
  * Fix some MMX/SSE irregularities which interact with the 64-bit support
Sun Sep 2 14:46:00 2007 +0000 H. Peter Anvin 
  * phash.ph: yet another attempt at getting Perl to behave, arithmetically
Sun Sep 2 06:23:29 2007 +0000 H. Peter Anvin 
  * Simple 64-bit org test
Sun Sep 2 06:20:15 2007 +0000 H. Peter Anvin 
  * phash.ph: remove some stale code
Sun Sep 2 01:00:34 2007 +0000 Chuck Crayne 
  * Force use of integer values for generating hash keys.
Fri Aug 31 18:10:23 2007 +0000 H. Peter Anvin 
  * phash: don't rely on the build platform Perl version of rand()
Fri Aug 31 07:31:51 2007 +0000 H. Peter Anvin 
  * tokhash.pl: formatting changes for readability
Fri Aug 31 07:23:31 2007 +0000 H. Peter Anvin 
  * tokhash: Speed up the rejection of unhashed values
Fri Aug 31 06:06:17 2007 +0000 H. Peter Anvin 
  * tokhash.pl: "ix" should have the same width as the "hash" arrays
Fri Aug 31 00:28:35 2007 +0000 H. Peter Anvin 
  * Add "do not edit" comment to tokhash.c
Fri Aug 31 00:23:40 2007 +0000 H. Peter Anvin 
  * Make the token hash a bit smaller by using 16-bit hash tables
Fri Aug 31 00:16:10 2007 +0000 H. Peter Anvin 
  * Minor cleanup; remove duplication of names.c
Thu Aug 30 23:42:39 2007 +0000 H. Peter Anvin 
  * phash.ph: use a bipartite graph to reduce the storage requirements
Thu Aug 30 22:35:34 2007 +0000 H. Peter Anvin 
  * Finishing touches on perfect hash tokenizer; actually turn the thing on
Thu Aug 30 21:50:20 2007 +0000 H. Peter Anvin 
  * Makefile rule for tokhash.c
Thu Aug 30 21:47:46 2007 +0000 H. Peter Anvin 
  * tokens.dat: Data file containing alphanumeric tokens not in other .dats
Thu Aug 30 21:45:56 2007 +0000 H. Peter Anvin 
  * Generate a perfect hash for the token parser
Thu Aug 30 21:40:08 2007 +0000 H. Peter Anvin 
  * Fix bugs in repeated suffix handling, which led to missing r8d/r8w/r8d
Thu Aug 30 21:39:37 2007 +0000 H. Peter Anvin 
  * phash.ph: more powerful prehashing
Thu Aug 30 20:15:25 2007 +0000 H. Peter Anvin 
  * Make the perfect hash generator an includable module
Wed Aug 29 20:30:31 2007 +0000 H. Peter Anvin 
  * Correct the logic for recording fs: and gs: overrides.
Wed Aug 29 18:20:19 2007 +0000 H. Peter Anvin 
  * Generate R_X86_64_64 relocations in elf64 output
Wed Aug 29 17:24:03 2007 +0000 H. Peter Anvin 
  * Add README file
Wed Aug 29 17:20:09 2007 +0000 H. Peter Anvin 
  * Create a Perl library directory, and add the Graph module to it
Wed Aug 29 17:05:17 2007 +0000 H. Peter Anvin 
  * Perfect hash generator, as a perl script
Wed Aug 29 16:41:43 2007 +0000 H. Peter Anvin 
  * Use standard macro for the default directive
Wed Aug 29 16:40:26 2007 +0000 H. Peter Anvin 
  * Add standard macro for [default] directive
Wed Aug 29 16:38:47 2007 +0000 H. Peter Anvin 
  * More test cases for rel and abs addressing
Wed Aug 29 16:38:05 2007 +0000 H. Peter Anvin 
  * Add [default] directive
Wed Aug 29 16:25:46 2007 +0000 H. Peter Anvin 
  * nasmlib: add bsii() case-insensitive version of bsi()
Wed Aug 29 15:49:53 2007 +0000 H. Peter Anvin 
  * Add test cases for IP-relative addressing
Wed Aug 29 15:19:19 2007 +0000 H. Peter Anvin 
  * Suppress IP-relative only for fs: and gs: overrides
Tue Aug 28 23:06:00 2007 +0000 H. Peter Anvin 
  * Implement REL/ABS modifiers
Sun Aug 26 05:51:39 2007 +0000 Frank Kotler 
  * attempt to make static makefiles aware of outelf32/outelf64
Sun Aug 26 05:48:54 2007 +0000 Frank Kotler 
  * add nasm_strsep to nasmlib, for output/outmacho.c - strtok doesn't work
Sun Aug 26 05:41:33 2007 +0000 Frank Kotler 
  * remove "#include <unistd.h> from rdoff directory - two places - it annoyed Windows users and seems unneeded
Sun Aug 26 05:10:24 2007 +0000 Frank Kotler 
  * finally commit Mike Frysinger's "elf-visibility" patch
Mon Aug 20 21:03:14 2007 +0000 H. Peter Anvin 
  * regs.pl: handle dashed sequences with suffixes
Mon Aug 20 20:10:04 2007 +0000 H. Peter Anvin 
  * sync.c: change ULONG_MAX to UINT32_MAX
Mon Aug 20 20:09:11 2007 +0000 H. Peter Anvin 
  * Add _MIN and _MAX macros for the fixed-size types.
Mon Aug 20 20:02:17 2007 +0000 H. Peter Anvin 
  * ldrdf: cast output of sizeof() before passing to printf(), to avoid warning.
Sun Aug 19 18:49:26 2007 +0000 Keith Kanios 
  * Fixed RIP address processing ambiguity found by Charles Crayne.
Fri Aug 17 07:37:52 2007 +0000 Keith Kanios 
  * Fixed issues with REX prefix effective address generation. Fixed XMM instruction output.
Fri Aug 17 02:03:10 2007 +0000 Keith Kanios 
  * Changed MMXREG and XMMREG flags to help resolve invalid REX prefix generation for MMX instructions.
Sat Jul 7 02:01:08 2007 +0000 H. Peter Anvin 
  * More int/int32_t confusion
Sat Jul 7 01:59:52 2007 +0000 H. Peter Anvin 
  * regflag() should return int32_t.
Thu Jun 21 19:00:12 2007 +0000 H. Peter Anvin 
  * Detect missing <inttypes.h> and include ersatz version if missing
Thu Jun 21 06:24:23 2007 +0000 H. Peter Anvin 
  * inttypes.h: for older preprocessors, specify L and LL as appropriate
Thu Jun 21 06:20:43 2007 +0000 H. Peter Anvin 
  * inttypes.h: Fix spelling of SHRT_MAX
Thu Jun 21 06:15:42 2007 +0000 H. Peter Anvin 
  * inttypes.h: do a single ersatz <inttypes.h> based on <limits.h>
Sun Jun 3 02:42:41 2007 +0000 Chuck Crayne 
  * Support 32-bit direct addressing in 64-bit mode without base or index regs
Sat Jun 2 02:26:21 2007 +0000 H. Peter Anvin 
  * Fix the [U]INT*_C() creation macros
Sat Jun 2 00:05:35 2007 +0000 H. Peter Anvin 
  * For platforms that don't have them, provide <inttypes.h> for common models.
Wed May 30 22:21:11 2007 +0000 H. Peter Anvin 
  * Fix the handling of the \313 code.
Wed May 30 22:20:01 2007 +0000 H. Peter Anvin 
  * Machine-generated \321->\324 corrections
Wed May 30 21:22:33 2007 +0000 Frank Kotler 
  * update "version" to 0.99.02
Wed May 30 20:30:15 2007 +0000 H. Peter Anvin 
  * Correct the generation of 67 prefixes.
Wed May 30 18:30:18 2007 +0000 H. Peter Anvin 
  * Update dependencies.
Wed May 30 16:34:29 2007 +0000 Frank Kotler 
  * update cvs server name in misc/release script
Wed May 30 04:28:50 2007 +0000 H. Peter Anvin 
  * Avoid magic values; we have more than 124 registers now
Wed May 30 04:27:58 2007 +0000 H. Peter Anvin 
  * Remove bogus redundant tests
Wed May 30 03:44:50 2007 +0000 H. Peter Anvin 
  * More \321 -> \324
Wed May 30 03:44:02 2007 +0000 H. Peter Anvin 
  * Remove bogus check for 64-bitness
Wed May 30 03:25:21 2007 +0000 H. Peter Anvin 
  * Get rid of magic open-coded "register numbers"
Wed May 30 02:48:51 2007 +0000 H. Peter Anvin 
  * MOV reg64,reg64 takes \324 (64 bit with REX) not \321 (32 bit)
Wed May 30 00:18:26 2007 +0000 H. Peter Anvin 
  * Rename REGNORM to REG_EA
Wed May 30 00:15:25 2007 +0000 H. Peter Anvin 
  * More instruction flag surgery
Wed May 30 00:05:00 2007 +0000 H. Peter Anvin 
  * More cleanup of operand flags/register classes
Tue May 29 23:57:12 2007 +0000 H. Peter Anvin 
  * Clean up the existing operand flag definitions, and document
Tue May 29 21:44:55 2007 +0000 H. Peter Anvin 
  * Run "make alldeps"
Thu May 24 22:33:07 2007 +0000 Frank Kotler 
  * update version number to 0.99.01
Tue May 15 04:33:43 2007 +0000 H. Peter Anvin 
  * regs.dat: fix comment
Fri May 4 18:47:16 2007 +0000 H. Peter Anvin 
  * 16-bit relocations are standard in ELF64 (at my request, incidentally)
Fri May 4 02:16:08 2007 +0000 Chuck Crayne 
  * Addition of elf32 and elf64 output formats.
Wed May 2 04:21:26 2007 +0000 Chuck Crayne 
  * Allow '!' to be used in expressions with same meaning as in C.
Wed May 2 01:59:16 2007 +0000 Chuck Crayne 
  * Add %IFN and %ELIFN as per RFE #786286
Mon Apr 30 22:26:58 2007 +0000 Chuck Crayne 
  * Accept responsibility for support of outelf64.c
Sun Apr 29 20:57:53 2007 +0000 Chuck Crayne 
  * Clarify comments about relocation entries.
Sun Apr 29 00:28:24 2007 +0000 Chuck Crayne 
  * Allow ELF32 to be invoked either as -f elf or -f elf32
Sat Apr 28 22:18:04 2007 +0000 Chuck Crayne 
  * Eliminate shift count warnings when building on 32-bit systems
Sat Apr 28 06:18:48 2007 +0000 Chuck Crayne 
  * Initial support for ELF64
Wed Apr 18 02:27:18 2007 +0000 H. Peter Anvin 
  * Fix the handling of \324 for computing the length
Wed Apr 18 02:24:34 2007 +0000 Keith Kanios 
  * Fixed RDF/2 to comply with "maxbits" use.
Tue Apr 17 20:23:11 2007 +0000 H. Peter Anvin 
  * Handle "LOCK as REX.R" for MOV CRx; fix warning for invalid 64-bit regs
Mon Apr 16 18:16:46 2007 +0000 Keith Kanios 
  * MEM_OFFSET Instructions Fixed.
Mon Apr 16 15:46:46 2007 +0000 Keith Kanios 
  * Fixed 64-bit Mode Segment Selection.
Mon Apr 16 14:31:54 2007 +0000 Keith Kanios 
  * Fixed distinction between [LOCAL]SYMBOL/IMMEDIATE for RIP-relative addressing.
Mon Apr 16 14:05:01 2007 +0000 Keith Kanios 
  * Fixed long mode MEM_OFFS issue.
Mon Apr 16 13:54:49 2007 +0000 Keith Kanios 
  * Filled in all RIP Register Flags.
Mon Apr 16 05:26:29 2007 +0000 H. Peter Anvin 
  * More \321 -> \324 for 64-bit instructions
Mon Apr 16 04:56:06 2007 +0000 Keith Kanios 
  * Fixed 64-bit offset generation.
Mon Apr 16 02:39:56 2007 +0000 H. Peter Anvin 
  * More 64-bit ndisasm fixes.
Mon Apr 16 02:02:06 2007 +0000 H. Peter Anvin 
  * Fixes for 64-bit ndisasm.
Mon Apr 16 01:21:29 2007 +0000 H. Peter Anvin 
  * Use + instead of * for extension; it feels cleaner with the new meaning.
Mon Apr 16 01:18:30 2007 +0000 H. Peter Anvin 
  * Initial 64-bit support for ndisasm.  Still a work in progress.
Sun Apr 15 23:12:17 2007 +0000 H. Peter Anvin 
  * Clean up the 64-bitification of regs.dat for 64-bit ndisasm support
Sun Apr 15 23:10:26 2007 +0000 H. Peter Anvin 
  * Remove @GCCFLAGS@
Sun Apr 15 23:09:23 2007 +0000 H. Peter Anvin 
  * CR8 is not special in any way as far as the assembler is concerned.
Sun Apr 15 23:03:28 2007 +0000 H. Peter Anvin 
  * Get rid of @GCCFLAGS@
Sun Apr 15 22:45:25 2007 +0000 H. Peter Anvin 
  * Cleaner way to add gcc options
Sun Apr 15 22:08:30 2007 +0000 Keith Kanios 
  * Fixed distinction between RIP relative symbols and immediate values.
Sun Apr 15 05:40:43 2007 +0000 H. Peter Anvin 
  * Fix the register number for CR7 (it was using the same number as CR15).
Sun Apr 15 05:32:18 2007 +0000 H. Peter Anvin 
  * More perl-like idioms for generating regdis.c
Sun Apr 15 01:37:13 2007 +0000 Keith Kanios 
  * Fixed regdis.c generation.
Sat Apr 14 18:54:52 2007 +0000 Keith Kanios 
  * Added DQ constants for all BITS modes.
Sat Apr 14 08:03:02 2007 +0000 H. Peter Anvin 
  * outmacho.c: stylistic cleanups
Sat Apr 14 03:52:05 2007 +0000 Keith Kanios 
  * Fixed support for DQ constants in long mode.
Sat Apr 14 03:44:31 2007 +0000 Keith Kanios 
  * Hopefully it is actually fixed this time :P
Sat Apr 14 01:49:07 2007 +0000 Keith Kanios 
  * Fixed structure initialization issue.
Sat Apr 14 01:44:35 2007 +0000 Keith Kanios 
  * Refixed uninitialized data.
Sat Apr 14 01:40:24 2007 +0000 Keith Kanios 
  * Fixed uninitialized structure data.
Sat Apr 14 01:24:14 2007 +0000 Keith Kanios 
  * c99 printf/fprintf compliance.
Sat Apr 14 00:46:25 2007 +0000 Keith Kanios 
  * Placated unreferenced types.
Sat Apr 14 00:10:59 2007 +0000 Keith Kanios 
  * c99 printf/fprintf compliance.
Fri Apr 13 23:09:18 2007 +0000 Keith Kanios 
  * Added outmacho.* to static makefile.
Fri Apr 13 22:24:46 2007 +0000 Keith Kanios 
  * Fixed REGRIP -> RIPREG to match regs.dat.
Fri Apr 13 22:07:53 2007 +0000 Keith Kanios 
  * Fixed obj_fwrite() declaration to match "static" definition.
Fri Apr 13 22:03:24 2007 +0000 Keith Kanios 
  * Added appropriate "void" prototypes.
Fri Apr 13 22:00:42 2007 +0000 Keith Kanios 
  * Replaced str(n)casecmp with more standard str(n)icmp.
Fri Apr 13 20:06:41 2007 +0000 H. Peter Anvin 
  * AIf we have config.h, we should actually include it!!
Fri Apr 13 19:59:20 2007 +0000 H. Peter Anvin 
  * When compiling with gcc, compile with -W -Wall for maximum warnings.
Fri Apr 13 19:58:42 2007 +0000 H. Peter Anvin 
  * Macroize any compiler-specific code; macros defined in "compiler.h"
Fri Apr 13 16:47:53 2007 +0000 Keith Kanios 
  * Fixed distinction between char and int8_t data types.
Fri Apr 13 01:17:45 2007 +0000 Keith Kanios 
  * Comment "REX.I" should have been "REX.X"
Fri Apr 13 00:52:54 2007 +0000 Keith Kanios 
  * Fixed c99 data-types after removal of typedefs.
Fri Apr 13 00:43:50 2007 +0000 Keith Kanios 
  * Added Dev-Cpp Makefile
Fri Apr 13 00:38:29 2007 +0000 Keith Kanios 
  * *** empty log message ***
Thu Apr 12 17:58:02 2007 +0000 H. Peter Anvin 
  * Remove redundant inclusion of <inttypes.h>
Thu Apr 12 16:54:50 2007 +0000 H. Peter Anvin 
  * Remove obsolete types; add <inttypes.h> where needed; header fixes
Thu Apr 12 16:25:58 2007 +0000 H. Peter Anvin 
  * autogen.sh script to create configure, et al.
Thu Apr 12 16:23:11 2007 +0000 Keith Kanios 
  * Fixed c99 support for RDOFF Tools
Thu Apr 12 16:12:09 2007 +0000 H. Peter Anvin 
  * outmacho.c: Don't assume __builtin_ctzl exists for gcc < 4

  * Get rid of @GCCFLAGS@
Sun Apr 15 22:45:25 2007 +0000 H. Peter Anvin 
  * Cleaner way to add gcc options
Sun Apr 15 22:08:30 2007 +0000 Keith Kanios 
  * Fixed distinction between RIP relative symbols and immediate values.
Sun Apr 15 05:40:43 2007 +0000 H. Peter Anvin 
  * Fix the register number for CR7 (it was using the same number as CR15).
Sun Apr 15 05:32:18 2007 +0000 H. Peter Anvin 
  * More perl-like idioms for generating regdis.c
Sun Apr 15 01:37:13 2007 +0000 Keith Kanios 
  * Fixed regdis.c generation.
Sat Apr 14 18:54:52 2007 +0000 Keith Kanios 
  * Added DQ constants for all BITS modes.
Sat Apr 14 08:03:02 2007 +0000 H. Peter Anvin 
  * outmacho.c: stylistic cleanups
Sat Apr 14 03:52:05 2007 +0000 Keith Kanios 
  * Fixed support for DQ constants in long mode.
Sat Apr 14 03:44:31 2007 +0000 Keith Kanios 
  * Hopefully it is actually fixed this time :P
Sat Apr 14 01:49:07 2007 +0000 Keith Kanios 
  * Fixed structure initialization issue.
Sat Apr 14 01:44:35 2007 +0000 Keith Kanios 
  * Refixed uninitialized data.
Sat Apr 14 01:40:24 2007 +0000 Keith Kanios 
  * Fixed uninitialized structure data.
Sat Apr 14 01:24:14 2007 +0000 Keith Kanios 
  * c99 printf/fprintf compliance.
Sat Apr 14 00:46:25 2007 +0000 Keith Kanios 
  * Placated unreferenced types.
Sat Apr 14 00:10:59 2007 +0000 Keith Kanios 
  * c99 printf/fprintf compliance.
Fri Apr 13 23:09:18 2007 +0000 Keith Kanios 
  * Added outmacho.* to static makefile.
Fri Apr 13 22:24:46 2007 +0000 Keith Kanios 
  * Fixed REGRIP -> RIPREG to match regs.dat.
Fri Apr 13 22:07:53 2007 +0000 Keith Kanios 
  * Fixed obj_fwrite() declaration to match "static" definition.
Fri Apr 13 22:03:24 2007 +0000 Keith Kanios 
  * Added appropriate "void" prototypes.
Fri Apr 13 22:00:42 2007 +0000 Keith Kanios 
  * Replaced str(n)casecmp with more standard str(n)icmp.
Fri Apr 13 20:06:41 2007 +0000 H. Peter Anvin 
  * AIf we have config.h, we should actually include it!!
Fri Apr 13 19:59:20 2007 +0000 H. Peter Anvin 
  * When compiling with gcc, compile with -W -Wall for maximum warnings.
Fri Apr 13 19:58:42 2007 +0000 H. Peter Anvin 
  * Macroize any compiler-specific code; macros defined in "compiler.h"
Fri Apr 13 16:47:53 2007 +0000 Keith Kanios 
  * Fixed distinction between char and int8_t data types.
Fri Apr 13 01:17:45 2007 +0000 Keith Kanios 
  * Comment "REX.I" should have been "REX.X"
Fri Apr 13 00:52:54 2007 +0000 Keith Kanios 
  * Fixed c99 data-types after removal of typedefs.
Fri Apr 13 00:43:50 2007 +0000 Keith Kanios 
  * Added Dev-Cpp Makefile
Fri Apr 13 00:38:29 2007 +0000 Keith Kanios 
  * *** empty log message ***
Thu Apr 12 17:58:02 2007 +0000 H. Peter Anvin 
  * Remove redundant inclusion of <inttypes.h>
Thu Apr 12 16:54:50 2007 +0000 H. Peter Anvin 
  * Remove obsolete types; add <inttypes.h> where needed; header fixes
Thu Apr 12 16:25:58 2007 +0000 H. Peter Anvin 
  * autogen.sh script to create configure, et al.
Thu Apr 12 16:23:11 2007 +0000 Keith Kanios 
  * Fixed c99 support for RDOFF Tools
Thu Apr 12 16:12:09 2007 +0000 H. Peter Anvin 
  * outmacho.c: Don't assume __builtin_ctzl exists for gcc < 4
2007-04-10  Keith Kanios <keith@kanios.net>
   * (insns.dat): updated x86-64 general+system instruction set.

2007-04-09  Keith Kanios <keith@kanios.net>
   * (outrdf.c): added support for 64-bit addressing.
   * (outrdf2.c): added support for 64-bit addressing.

2007-04-08  Keith Kanios <keith@kanios.net>
   * (standard.mac): added entry for __BITS__ standard macro.
   * (preproc.c): added __BITS__ to the standard macro processing.

2007-04-05  Keith Kanios <keith@kanios.net>
   * (nasm.c): added [BITS 64] for the x86-64 architecture extension.
   * (nasm.h): added general flags to support the x86-64 architecture.
   * (nasmlib.h): updated to support the x86-64 architecture.
   * (nasmlib.c): revamped readnum/readlinenum to support 64-bit.
   * (assemble.c): modified for the x86-64 architecture extension.
   * (regs.dat): added x86-64 register extensions; revamped flags.
   * (insns.dat): added AMD64 instruction set support.
   * (outbin.c): added support for 64-bit addressing.
   * (outcoff.c): added win64 (x86-64 COFF) support.
   * (outform.h): added entry for win64.

2007-03-15  Keith Kanios <keith@kanios.net>
   * (*.c): added c99 data-type compliance and <inttypes.h> inclusion.
   * (*.pl): added c99 data-type compliance and <inttypes.h> inclusion.
   * (*.h): added c99 data-type compliance.
   * (assemble.h): fixed procedure definitions to sync with respective
   procedure declarations.

2002-05-16  Ed Beroset <beroset@mindspring.com>
   * (preproc.c): fixed unterminated macro bug error reporting
   * (nasmlib.h): changed strdup's arg to const char *
   * (nasmlib.c): changed strdup's arg to const char *

2002-05-12  Debbie Wiles <debs@dwiles.demon.co.uk>
   * (insns.dat): fixed incorrect processor flags
   * (Mkfiles/Makefile.vc): added optimisation, and changed to work with 0.98.31
   * (doc/nasmdoc.src): added %ifmacro, and tidied up format of code items.

2002-05-03  H. Peter Anvin <hpa@zytor.com>
   * (nasm.c): Change the NASM environment variable to NASMOPT.

2002-05-03  H. Peter Anvin <hpa@zytor.com>
   * (Makefile.in Mkfiles/*): use new version -> version.{h,mac}.
   * (macros.pl): support multiple input files (standard.mac, version.mac).
   * (standard.mac): use an explicit delimiter to end the TASM macros.
   * (nasm-version): remove, no longer needed.
   * (version.pl): script to produce version.h and version.mac from version.
   * (version): contains the official NASM version.
   * (nasm.h): include version.h.

2002-05-03  H. Peter Anvin <hpa@zytor.com>

   * (configure.in): create output directory.
   * (Makefile.in): change cd ; to cd &&.
   * (rdoff/Makefile.in): handle building in a separate obj directory
     correctly.
	
2002-04-29  Stanislav Karchebny  <madfire@users.sourceforge.net>

   * (Makefile.in): added 'strip' target to strip debug info.
   * (INSTALL): added INSTALL file.
   * (nasm.1): added -v option description.


2002-04-29  Frank Kotler  <fbkotler@users.sourceforge.net>

   * (parser.c): fixed INCBIN bug reported by Rebel.


2002-04-11  Stanislav Karchebny  <madfire@users.sourceforge.net>

   * Started ChangeLog for recording per-file changes in the project.
     We could get away without ChangeLog at all (use CVS logs), but we
     lose CVS so often its better to have log glued to the sources =)
     You should record changes in CHANGES also, not for every change
     but rather when making a release.