1;
2;       Small C+ Runtime Library
3;
4;       CP/M functions
5;
6;       CPM Plus "userf" custom Amstrad calls, for Amstrad CPC & PCW and ZX Spectrum +3
7;
8;
9;       $Id: a_curx.asm,v 1.3 2017-01-02 20:06:48 aralbrec Exp $
10;
11
12	SECTION code_clib
13
14	PUBLIC	a_curx
15   PUBLIC   _a_curx
16
17	EXTERN	subuserf
18	INCLUDE	"target/cpc/def/amstrad_userf.def"
19
20a_curx:
21_a_curx:
22	call subuserf
23	defw TE_ASK
24	;ld l,h
25	ld h,0
26	ret
27
28