Re: A86: run


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

Re: A86: run




In a message dated 10/10/98 15:38:42 Eastern Daylight Time,
adamcsmith@hotmail.com writes:

> how do i run another program from an asm program?
>  


	ld hl,progname
	rst 20h				;move program name to op1
	call _exec_assembly		;execute program

	...other code...

progname:
	.db $12,8,"BlahBlah"


Follow-Ups: