Does PB compile unused procedures?

Everything else that doesn't fall into one of the other PB categories.
Thorium
Addict
Addict
Posts: 1271
Joined: Sat Aug 15, 2009 6:59 pm

Re: Does PB compile unused procedures?

Post by Thorium »

Logman wrote:I'm able to look at how PB compiles its code. As I suspected, PB does a really good job of compiling code into executables, I just didn't realize how well a job it was doing until I actually started looking at some executable programs based on the examples discussed in this thread.
You don't need special tools for that, just notepad. ^^
If you pass the parameter /COMMENTED to the compiler it will comment and not delete the asm file it is generating. So you can just look at the generated asm code with a simple text editor and even can find your procedures extremly easy, because all your PB lines are in the asm file as comments. ^^
Post Reply