??? 02/26/07 08:53 Read: times |
#133689 - lame linker related question |
Hi Guys-
I realize this is a major noob question and should take about -2 seconds to figure out, but for some reason I'm having trouble with the simple stuff. I'm running the evaluation version of Keils assembler. I have a "long" (1k) assembly file and it's getting annoying to have to scroll around trying to find the code I'm dealing with. I want to break up my project in to multiple asm files. I want, for example, to have a group of functions that deal with UART routines to live in a module that I can just "include" (not the actual $include) with any firmware I write in the future. Is there a way to avoid using the public/extrn functions for every sub routine/data/equ/set between two asm files? In other words is there a way to do something like public This_Entire_File extrn CODE/DATA/EQUs (This_Entire_File) ? Thanks a lot, D |