??? 02/27/07 09:40 Read: times |
#133781 - chop & glue Responding to: ???'s previous message |
Jan Waclawek said:
There is no "programming" in include - you can as well write a simple tool which merges the file as you want and run the assembler after it For example, for MS-DOS or Windows command line: COPY file1.asm + file2.asm + file3.asm all_files.asm A51 all_files.asm Would be equivalent to having the followinf as all_files.asm: $INCLUDE (file1.asm) $INCLUDE (file2.asm) $INCLUDE (file3.asm) To build that in uVision, you would just have all_files.asm in your Project. I didn't give you the permission to split it up in this way :-) Absolutely - you can do it this way if you want, just don't say that I recommended it! |