Re: Re: A86: Basic to Asm Variable Transfer


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

Re: Re: A86: Basic to Asm Variable Transfer





In a message dated 5/31/98 13:10:08, you wrote:

>#include asm86.h   ;<-----has to be first unless using the IDE
>#include ti86asm.inc

.org _asm_exec_ram		;don't you need this to start the program?

>init:   ;<-----have to have it under a label
>	call _rclx
>	call _convop1
>	ld b,a
>	call _rcly
>	call _convop1
>	ld c,a
>	ld hl,sprite
>	call putsprite
>	ret
>.end