NASM 0.98p3.6
[nasm/avx512.git] / MODIFIED
blob7a0307b4e50181c4c6701222ff863df0894afbf1
1 This is a modified version of NASM, modified and released by H. Peter
2 Anvin <hpa@zytor.com>; it is not the original form released by the
3 NASM authors.
5 For release 0.98p3.6:
7 * Fixed a bunch of instructions that were added in 0.98p3.5 which had
8   memory operands, and the address-size prefix was missing from the
9   instruction pattern.
11 For release 0.98p3.5:
13 * Merged in changes from John S. Fine's 0.98-J5 release.  John's based
14   0.98-J5 on my 0.98p3.3 release; this merges the changes.
15 * Expanded the instructions flag field to a long so we can fit more
16   flags; mark SSE (KNI) and AMD or Katmai-specific instructions as
17   such.
18 * Fix the "PRIV" flag on a bunch of instructions, and create new
19   "PROT" flag for protected-mode-only instructions (orthogonal to if
20   the instruction is privileged!) and new "SMM" flag for SMM-only
21   instructions.
22 * Added AMD-only SYSCALL and SYSRET instructions.
23 * Make SSE actually work, and add new Katmai MMX instructions.
24 * Added a -p (preferred vendor) option to ndisasm so that it can
25   distinguish e.g. Cyrix opcodes also used in SSE.  For example:
27         ndisasm -p cyrix aliased.bin
28         00000000  670F514310        paddsiw mm0,[ebx+0x10]
29         00000005  670F514320        paddsiw mm0,[ebx+0x20]
30         ndisasm -p intel aliased.bin
31         00000000  670F514310        sqrtps xmm0,[ebx+0x10]
32         00000005  670F514320        sqrtps xmm0,[ebx+0x20]
33 * Added a bunch of Cyrix-specific instructions.
35 For release 0.98p3.4:
37 * Made at least an attempt to modify all the additional Makefiles (in
38   the Mkfiles directory).  I can't test it, but this was the best I
39   could do.
40 * DOS DJGPP+"Opus Make" Makefile from John S. Fine.
41 * changes.asm changes from John S. Fine.
44 For release 0.98p3.3:
46 * Patch from Conan Brink to allow nesting of %rep directives.
47 * If we're going to allow INT01 as an alias for INT1/ICEBP (one of
48   Jules 0.98p3 changes), then we should allow INT03 as an alias for INT3
49   as well.
50 * Updated changes.asm to include the latest changes.
51 * Tried to clean up the <CR>s that had snuck in from a DOS/Windows
52   environment into my Unix environment, and try to make sure than
53   DOS/Windows users get them back.
54 * We would silently generate broken tools if insns.dat wasn't sorted
55   properly.  Change insns.pl so that the order doesn't matter.
56 * Fix bug in insns.pl (introduced by me) which would cause conditional
57   instructions to have an extra "cc" in disassembly, e.g. "jnz"
58   disassembled as "jccnz".
61 For release 0.98p3.2:
63 * Merged in John S. Fine's changes from his 0.98-J4 prerelease; see
64   http://www.csoft.net/cz/johnfine/
65 * Changed previous "spotless" Makefile target (appropriate for distribution)
66   to "distclean", and added "cleaner" target which is same as "clean"
67   except deletes files generated by Perl scripts; "spotless" is union.
68 * Removed BASIC programs from distribution.  Get a Perl interpreter
69   instead (see below.)
70 * Calling this "pre-release 3.2" rather than "p3-hpa2" because of
71   John's contributions.
72 * Actually link in the IEEE output format (zoutieee.c); fix a bunch of
73   compiler warnings in that file.  Note I don't know what IEEE output
74   is supposed to look like, so these changes were made "blind".
77 For release 0.98p3-hpa:
79 * Merged nasm098p3.zip with nasm-0.97.tar.gz to create a fully
80   buildable version for Unix systems (Makefile.in updates, etc.)
81 * Changed insns.pl to create the instruction tables in nasm.h and
82   names.c, so that a new instruction can be added by adding it *only*
83   to insns.dat.
84 * Added the following new instructions: SYSENTER, SYSEXIT, FXSAVE,
85   FXRSTOR, UD1, UD2 (the latter two are two opcodes that Intel
86   guarantee will never be used; one of them is documented as UD2 in
87   Intel documentation, the other one just as "Undefined Opcode" --
88   calling it UD1 seemed to make sense.)
89 * MAX_SYMBOL was defined to be 9, but LOADALL286 and LOADALL386 are 10
90   characters long.  Now MAX_SYMBOL is derived from insns.dat.
91 * A note on the BASIC programs included: forget them.  insns.bas is
92   already out of date.  Get yourself a Perl interpreter for your
93   platform of choice at:
95         http://www.cpan.org/ports/index.html