
Originally Posted by
Tabsoft
Absolutely.
From the PBP manual in the "DEFINEs Defined" section.
For the practical PBP user, there are a couple of fundamental points to consider:
1) DEFINEs are CASE SENSITIVE!
All PBP DEFINE parameters are UPPERCASE.
So when you use "osc"' "Osc" "oSc" "osC" "OSc" "oSC" "OsC", PBP will not recognize these as OSC defines and will use the default OSC setting.
ONLY "OSC" will actually tell PBP you are setting the OSC speed.
The correct statement for your program is:
"DEFINE OSC 20"
The Microcode Studio UI will change the "DEFINE" keyword to lower case when it is displayed I.e. "define" but that is only what is displayed in the UI. It does not actually change the text in the file to lowercase. More importantly it does not change the "OSC" parameter. It will leave it as you typed it.
Bookmarks