diff --git a/doc/cc65.sgml b/doc/cc65.sgml index 8ca819cff..96d414486 100644 --- a/doc/cc65.sgml +++ b/doc/cc65.sgml @@ -806,7 +806,7 @@ the format specifier before passing the assembly code line to the backend.

@@ -835,16 +835,19 @@ Or, to access a struct member of a static variable:

Note: Do not embedd the assembler labels that are used as names of global -variables into your asm statements. Code like this +variables or functions into your asm statements. Code like this int foo; + int bar () { return 1; } __asm__ ("lda _foo"); /* DON'T DO THAT! */ + ... + __asm__ ("jsr _bar"); /* DON'T DO THAT EITHER! */

-may stop working if the way, the compiler generates variable names is changed -in a future version. +may stop working if the way, the compiler generates these names is changed in +a future version.