/* * _get_cursor — прочитать текущий курсор BIOS GetCursor (rst 8, $8E) * в pc_place (D=row, E=col → сохраняются парой). */ #include "_conio.h" void _get_cursor(void) __naked { __asm ld c, #0x8e ; BIOS GetCursor rst #0x08 ld (_pc_place), de ret __endasm; }