Executing: "C:\PBP\PBPW.EXE-ampasmwin-oq-z -p16F819"Car Computer Accel.pbp"
PicBasic Pro Compiler 2.46, (c) 1998, 2005 microEngineering Labs, Inc.
All Rights Reserved

ERROR: Unable to execute mpasmwin. Skipping link step. Not all sources built successfully.
BUILD FAILED: Tue Dec 27 19:15:34 2005


At first look, if the above is exactly the error shown by the PC and your command line is just like the first line shown here, I see a couple of problems:

The extra " mark in between 819 and Car - shorten the filename and get rid of the extra " mark

The lack of a space after .EXE, the space needs to be there

The lack of spaces in front of any of the dashes specifying options, again, spaces generally need to be there.

This is what my command line looks like for comparison purposes and it works just fine:
d:\pbp\pbpw -aC:\Progra~1\Microchip\MPASMS~1\MPASMWIN.EXE -c -e -p18f4620 -v -ie:\pbp\inc test4620.bas

Notice I don't give the compiler a chance to use long filenames, I use their old DOS8.3 equivalents, saves me agravation in the future. And also notice all of the spaces in front of the dashes for the options...

Hope that helps...
JDG