TucsonDon Member May 20, 2018 #1 What is the affect on memory if a macro is defined in the source or header?
Nigel Goodwin Super Moderator Most Helpful Member May 20, 2018 #2 None, it should produce the same code regardless.
Ian Rogers User Extraordinaire Forum Supporter Most Helpful Member May 20, 2018 #3 One thing though... A macro will be assembled inline, so if you use the macro often, You may want to re-write as a sub routine.. Sub routines will be assembled once and can be used many times..
One thing though... A macro will be assembled inline, so if you use the macro often, You may want to re-write as a sub routine.. Sub routines will be assembled once and can be used many times..