Searching \ for 'Assembler Error' in subject line. ()
Make payments with PayPal - it's fast, free and secure! Help us get a faster server
FAQ page: massmind.org/techref/index.htm?key=assembler+error
Search entire site for: 'Assembler Error'.

Truncated match.
PICList Thread
'Assembler Error'
2000\02\24@141126 by Kevin Thomas

flavicon
face
part 0 560 bytes
x-html>

The following line produces the error 'bad byte value'

movlw   B'00000001'

The assembler points to the beginning of the binary number. I'm using
AF84 version 1.02 - a DOS assembler. Any good source of knowledge for a
raw beginer in assembly language would be nice. I cannot find anything
that caters for idiots.

Kevin

2000\02\24@142547 by Quitt, Walter

flavicon
face
It is perfectly good MPASM syntax.
Why don't you use MPASM?
MPASM is a DOS app too.
Also FREE, including the docs.

GL,
Walt...

-----Original Message-----
From: Kevin Thomas [spam_OUTvk5kksTakeThisOuTspamSENET.COM.AU]
Sent: Thursday, February 24, 2000 11:09 AM
To: .....PICLISTKILLspamspam@spam@MITVMA.MIT.EDU
Subject: Assembler Error



The following line produces the error 'bad byte value'

movlw   B'00000001'

The assembler points to the beginning of the binary number. I'm using
AF84 version 1.02 - a DOS assembler. Any good source of knowledge for a
raw beginer in assembly language would be nice. I cannot find anything
that caters for idiots.

Kevin

2000\02\24@152316 by Robert Rolf

picon face
Trying putting the B at the END of the value, as in

movlw 00000001B

or get rid of the ' which the assembler may be trying to
interpret as a single Ascii conversion request.

movlw 'A'      ;put ASCII A into W

And try MPASM. Buggy as it is, its still a very nice
development environment.

Kevin Thomas wrote:
{Quote hidden}

2000\02\25@015548 by Dr. Imre Bartfai

flavicon
face
Hi,

I do not know that assembler but I suspect it does not like that strange
Mchip format. You can try the following ones:

       movlw   00000001b
       movlw   b'00000001
       movlw   0b00000001

It can be a RTFM error, I guess.

Regards,
Imre


On Fri, 25 Feb 2000, Kevin Thomas wrote:

{Quote hidden}

More... (looser matching)
- Last day of these posts
- In 2000 , 2001 only
- Today
- New search...