Hi, Is there a utility, or complier option or any known method to view local variable names and their stack offset number within a function? I can do it manually by counting through the order in which the local variables were declared and assign them consecutive numbers that hopefully match those that I see in the assembled code. It seems the compiler does exactly that and then gives them that number as their stack offset. But this manual method is very tedious and prone to human error. Given that the compiler works it out anyway then it seems obvious that the local variable name and its stack offset number exists somewhere already in the background. Thanks