Mail Archives: djgpp/2000/10/07/08:58:22
> From: Jerzy Klejnowski <dziabol AT polbox DOT com>
> Newsgroups: comp.os.msdos.djgpp
> Date: Sat, 07 Oct 2000 03:35:57 +0200
>
> > It's intentional. That module was written by me, for me.
>
> Sorry for 'buggy behaviour', then. I simply assumed that _mono
> routines work on entire screen area. A little note in library
> reference could help to avoid confusion.
Yep. However, in this case, I think we need to change the functions
to use the entire screen, rather than fix the docs.
> There is yet another
> thing that puzzles me: after printf("\n") cursor moves to 1st
> column on the next line, but _mono_printf("\n") moves cursor
> down, without changing column. Why?
_mono_printf is like cprintf: you need to use explicit \r to move the
cursor to the left margin. Say _mono_printf("\r\n"), and it will do
what you want.
> Can I use _farsetsel safely inside irq handler? Should
> I restore previous selector after that?
Yes and yes.
- Raw text -