16/32 bits PIC support in PBP?
Since the FAQ is empty after the apparent upgrade I decided this is the best place to post my question and i can't find the answer in the PBP's product description.
I have an older version of PBP that I've been meaning to upgrade for a while, just never got around to it...
I'm now looking at the possible necessity to use PIC24's and above.
The question is, does pbp support anything higher than PIC18's?
if not, is their any future developments to be done towards 16/32 bit PIC's?
If NO then theirs no point in upgrading...
Thanks
no 16 and 32 bits assemblers ... joking' I hope ...
Quote:
Originally Posted by
Art
I doubt PBP will ever support anything in the 16/32 bit devices for the reasons posted above.
You can't write for them directly in assembler with MPLAB,
so how could a high level language that compiles to assembler be of any use?
.
Hi, Art,
I won't be so sure ...
What are MPLAB ASM30 and ASM 32 , for you ???
Have a look to the relevant chapters in MPLAB HELP ...
Alain
one example for ASM32:
Quote:
#include
</PRE>
############################
</PRE>
# main routine
</PRE>
############################
</PRE>
.text
</PRE>
.set noreorder
</PRE>
.ent main
</PRE>
main:
</PRE>
# Do something here
</PRE>
nop
</PRE>
# Infinite loop
</PRE>
1:
</PRE>
b 1b
</PRE>
nop
</PRE>
.end main
</PRE>
.globl main
</PRE>