Re: A83: Having a compiling error
[Prev][Next][Index][Thread]
Re: A83: Having a compiling error
At 17:43 1998-06-13 -0400, you wrote:
>When I compile this code I get an error that on a line (203 I think) it
expects
>a "%" but it's in movax's sprite routine and it's a comment (sorta).
Please help
>me!
It's not a problem in my dear friend movax's routine!
It's your data..
to define a binary number you should write either:
.db %01010101
or
.db 01010101b
you wrote
.db 01010101%
which is something like a mix between the two.. and tasm doesn't like that :)
/Olle
References: