1; ----------------------------------------------------------------
2; Z88DK INTERFACE LIBRARY FOR THE BIFROST*2 ENGINE
3;
4; See "bifrost2.h" for further details
5; ----------------------------------------------------------------
6
7; void BIFROST2_showTilePosH(unsigned int lin,unsigned int col)
8; callee
9
10SECTION code_clib
11SECTION code_bifrost2
12
13PUBLIC BIFROST2_showTilePosH_callee
14
15EXTERN asm_BIFROST2_showTilePosH
16
17BIFROST2_showTilePosH_callee:
18
19        pop hl          ; RET address
20        pop de          ; E=col
21        ex (sp),hl      ; L=lin
22        ld d,l          ; D=lin
23
24        jp asm_BIFROST2_showTilePosH        ; execute 'show_tile_pos'
25