docs(amiga): make cross-references clickable markdown links

Convert bare .md path references in 29 files to proper [name](relative/path)
markdown links for GitHub navigation.
This commit is contained in:
Ilia Sharin 2026-04-23 12:24:21 -04:00
parent 551ebda2b1
commit fca930d0db
29 changed files with 46 additions and 46 deletions

View file

@ -91,7 +91,7 @@ APTR SetFunction(struct Library *library, LONG funcOffset, APTR newFunction);
old_write = SetFunction((struct Library *)DOSBase, -48, my_write_hook);
```
See `05_reversing/dynamic/setfunction_patching.md` for trampoline patterns.
See [setfunction_patching.md](../05_reversing/dynamic/setfunction_patching.md) for trampoline patterns.
---
@ -121,5 +121,5 @@ If `LIBF_SUMUSED` is set, exec verifies the checksum at `CloseLibrary` time. Pat
- NDK39: `exec/execbase.h`, `exec/libraries.h`
- ADCD 2.1: `MakeFunctions`, `MakeLibrary`, `SetFunction`, `SumLibrary`
- `05_reversing/static/library_jmp_table.md` — reconstruction workflow
- `04_linking_and_libraries/lvo_table.md` — complete LVO reference tables
- [library_jmp_table.md](../05_reversing/static/library_jmp_table.md) — reconstruction workflow
- [lvo_table.md](../04_linking_and_libraries/lvo_table.md) — complete LVO reference tables