Hi, Darrel
While you're here ...
A question I have for long time ... linked to the subject.
Is it possible to do something like conditionnal assembly with PBP ??? never saw anything about that ...
and Google doesn't return anything nor ...
Alain
Hi, Darrel
While you're here ...
A question I have for long time ... linked to the subject.
Is it possible to do something like conditionnal assembly with PBP ??? never saw anything about that ...
and Google doesn't return anything nor ...
Alain
************************************************** ***********************
Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
************************************************** ***********************
IF there is the word "Problem" in your question ...
certainly the answer is " RTFM " or " RTFDataSheet " !!!
*****************************************
At the PBP level ... NO.Is it possible to do something like conditionnal assembly with PBP ???
At the ASM level ... YES.
In other words, you can not conditionally compile variables, array sizes or anything that PBP needs to know before passing it on to the assembler.
Once it's at the assembler, you can conditionally remove any part of the PBP "Code" that you wish.
But only the code.
Not the variables, defines or any variables/defines in other include files.
All you do is put if/endif's around what you want or don't want...
<br>Code:DEFINE MyOption 1 @ if (MyOption == 1) LCDOUT "Option 1 HardCoded" @ endif
DT
Re,
Ok, that's more than nice to me ....
just looked for " embedding " PBP commands ...
Thanks, Darrel
Alain
************************************************** ***********************
Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
************************************************** ***********************
IF there is the word "Problem" in your question ...
certainly the answer is " RTFM " or " RTFDataSheet " !!!
*****************************************
Bookmarks