A83: Re: very basic asm program help...


[Prev][Next][Index][Thread]

A83: Re: very basic asm program help...




not as far as I know.

NE
-----Original Message-----
From: JakeGuilbo <JakeGuilbo@aol.com>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Wednesday, March 11, 1998 4:21 PM
Subject: A83: very basic asm program help...


>
>hello....i am starting to learn asm and im moving very slowly..i need help
>with something...
>you know how the asm equivlent of basic's:
>
>Disp "Hey"
>
>is:
>        ld hl,0000h            
>        ld (CURROW),hl          
>        ld hl,first              
>        call _puts              
>first:
>        .db "Hey",0  
>
>Is there anyway to do a:
>
>Disp "Hey","Howz it goin?"
>
>in asm without re-typing all the ld's?
>
>jake