Lines Matching refs:ireg
26 struct biosregs ireg, oreg; in store_cursor_position() local
28 initregs(&ireg); in store_cursor_position()
29 ireg.ah = 0x03; in store_cursor_position()
30 intcall(0x10, &ireg, &oreg); in store_cursor_position()
44 struct biosregs ireg, oreg; in store_video_mode() local
48 initregs(&ireg); in store_video_mode()
49 ireg.ah = 0x0f; in store_video_mode()
50 intcall(0x10, &ireg, &oreg); in store_video_mode()
266 struct biosregs ireg; in restore_screen() local
310 initregs(&ireg); in restore_screen()
311 ireg.ah = 0x02; /* Set cursor position */ in restore_screen()
312 ireg.dh = saved.cury; in restore_screen()
313 ireg.dl = saved.curx; in restore_screen()
314 intcall(0x10, &ireg, NULL); in restore_screen()