Lines Matching refs:ireg
24 struct biosregs ireg, oreg; in store_cursor_position() local
26 initregs(&ireg); in store_cursor_position()
27 ireg.ah = 0x03; in store_cursor_position()
28 intcall(0x10, &ireg, &oreg); in store_cursor_position()
42 struct biosregs ireg, oreg; in store_video_mode() local
46 initregs(&ireg); in store_video_mode()
47 ireg.ah = 0x0f; in store_video_mode()
48 intcall(0x10, &ireg, &oreg); in store_video_mode()
264 struct biosregs ireg; in restore_screen() local
308 initregs(&ireg); in restore_screen()
309 ireg.ah = 0x02; /* Set cursor position */ in restore_screen()
310 ireg.dh = saved.cury; in restore_screen()
311 ireg.dl = saved.curx; in restore_screen()
312 intcall(0x10, &ireg, NULL); in restore_screen()