[A83] Re: check if positive
[Prev][Next][Index][Thread]
[A83] Re: check if positive
Hi,
.ds define a nuber of byte to let space
Exemple:
.db 0,0,0,0
can be make by
.ds 4
Here is the definition by Wouter Demuynck from Void.... (at
http://karma.ticalc.org/guide/contents.html) :
.DS 10
Define storage (here: 10 bytes) This will reserve some memory locations where
you will be able to store your data in
Hope that help
Paxl
On Sunday 27 May 2001 02:14 pm, you wrote:
> .db "Hi There",0
> The above line defines 1 byte for each character. .db also supports commas
> to define multiple bytes.
>
> .dw is used to make 16 bit numbers (possibly to put into hl), or just
> addresses.
>
>
> From: "Maarten Blackhead" <m021085@hotmail.com>
>
> >Reply-To: assembly-83@lists.ticalc.org
> >To: assembly-83@lists.ticalc.org
> >Subject: [A83] Re: check if positive
> >Date: Sun, 27 May 2001 18:09:13 -0000
> >
> >
> >OK Xavier I understood al of what you said. but how can you define a
> > string (db. " Hi there",0) in one byte, or is that one byte just a
> > pointer? And that " space to let in a program" I understood neither.
> >
> >Thanks in advanxce
> >p.s. " does anybody know how you can check if a variable is bigger than an
> >other variable",0
> >_________________________________________________________________________
> >Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com
References: