Hi! > Btw, is lea "better" than addq when adjusting the stack pointer? Yes, because addq.l #8,a7 does not exist (a first argument of addq is limited to 0-7, because 3 bits are reserved for it). So, I used lea (a7,8),a7 which is 2 bytes shorter than add.l #8,a7 Zeljko Juric