diff --git a/doc/co65.sgml b/doc/co65.sgml index 31aa34234..126ed56fd 100644 --- a/doc/co65.sgml +++ b/doc/co65.sgml @@ -290,11 +290,11 @@ output. ca65 c64-hi.s -Next, change your C code to declare a variable that is actually the first byte +Next, change your C code to declare a variable that is actually the address of the driver: - extern char c64_hi; + extern void c64_hi[]; Instead of loading and unloading the driver, change the code to install and @@ -302,7 +302,7 @@ uninstall the driver, which will be already in memory after linking: /* Install the driver */ - tgi_install (&c64_hi); + tgi_install (c64_hi); ...