diff options
Diffstat (limited to 'docs/Linking_overview.md')
-rw-r--r-- | docs/Linking_overview.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/Linking_overview.md b/docs/Linking_overview.md index fb938b63..965e926d 100644 --- a/docs/Linking_overview.md +++ b/docs/Linking_overview.md @@ -95,8 +95,10 @@ a corresponding symbol definitions in the linker script that points to the C code of the specified mode. This is typically seen with code like: -`extern void _cfunc32flat_process_op(void);`\ -`return call32(_cfunc32flat_process_op, 0, 0);` +``` +extern void _cfunc32flat_process_op(void); +return call32(_cfunc32flat_process_op, 0, 0); +``` In the above example, when the build finds the symbol "\_cfunc32flat_process_op" it will emit that symbol with the physical |