1
0
mirror of https://github.com/skeeto/w64devkit.git synced 2025-08-06 11:42:39 +03:00

README.md: Two more documentation links

This commit is contained in:
Christopher Wellons
2021-09-26 17:30:07 -04:00
parent 3b38e752f1
commit f08f24108f

View File

@@ -107,11 +107,15 @@ w64devkit's capabilities. In rough order of importance:
* [GNU Make manual][doc-make] (PDF, HTML) * [GNU Make manual][doc-make] (PDF, HTML)
* [GNU Binutils manuals][doc-ld] (PDF, HTML), particularly `ld` and `as`.
* [GDB manual][doc-gdb] (PDF) * [GDB manual][doc-gdb] (PDF)
* [BusyBox man pages][doc-bb] (TXT), though everything here is also * [BusyBox man pages][doc-bb] (TXT), though everything here is also
available via `-h` option inside w64devkit. available via `-h` option inside w64devkit.
* [NASM manual][doc-nasm] (PDF)
* [Intel Software Developer Manuals][doc-intel] (PDF), for referencing x86 * [Intel Software Developer Manuals][doc-intel] (PDF), for referencing x86
instructions, when either studying compiler output with `objdump`, or instructions, when either studying compiler output with `objdump`, or
writing assembly with `nasm` or `as`. writing assembly with `nasm` or `as`.
@@ -159,7 +163,9 @@ binaries.
[doc-gdb]: https://sourceware.org/gdb/current/onlinedocs/gdb.pdf [doc-gdb]: https://sourceware.org/gdb/current/onlinedocs/gdb.pdf
[doc-intel]: https://software.intel.com/content/www/us/en/develop/articles/intel-sdm.html [doc-intel]: https://software.intel.com/content/www/us/en/develop/articles/intel-sdm.html
[doc-intr]: https://software.intel.com/sites/landingpage/IntrinsicsGuide/ [doc-intr]: https://software.intel.com/sites/landingpage/IntrinsicsGuide/
[doc-ld]: https://sourceware.org/binutils/docs/
[doc-make]: https://www.gnu.org/software/make/manual/ [doc-make]: https://www.gnu.org/software/make/manual/
[doc-nasm]: https://www.nasm.us/docs.php
[doc-std]: https://stackoverflow.com/a/83763 [doc-std]: https://stackoverflow.com/a/83763
[doc-win32]: http://laurencejackson.com/win32/ [doc-win32]: http://laurencejackson.com/win32/
[gdb]: https://www.gnu.org/software/gdb/ [gdb]: https://www.gnu.org/software/gdb/