In Keil uVision3 evaluation version,
its debugger is 16K code-size limited.
Is this meaning that our program size is limited to 16KBytes in C code or assembly code ?
Thanks
The size limitations refer to the compiled program. Your source code may be any size.
source code (e.g. in C language) through compiler, we have compiled program in object code (usually in assembly language) ?
"object code (usually in assembly language)"
No.
Assembler code is source code; Object code is the binary output of the Compiler or Assembler.
Thank you.