
DelfMem
-------

Shows available Delfina memory.

RunPrg
------

Run delfina programs from Shell. Syntax:

RunPrg FILE/A, X1/N, X0/N ,Y1/N, Y0/N

FILE  = program file name, <name>.o56
X1-Y0 = registers passed to the program

An example. Assume you have compiled a program add.a56:

	org	p:
	move	x0,a
	add	x1,a
	move	a,x0
	rts

The command

   RunPrg add.o56 42 101

will output "Result: 143 (0x8f)".


