Subversion Repositories HelenOS-historic

Rev

Rev 1631 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1631 Rev 1649
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
/** @defgroup sysio SysIO
-
 
30
 * @brief   HelenOS framebuffer emulation via kernel.
-
 
31
 * @ingroup fbs
-
 
32
 * @{
-
 
33
 */
-
 
34
/** @file
-
 
35
 */
-
 
36
 
29
#include <async.h>
37
#include <async.h>
30
#include <ipc/fb.h>
38
#include <ipc/fb.h>
31
#include <ipc/ipc.h>
39
#include <ipc/ipc.h>
32
#include <libc.h>
40
#include <libc.h>
33
#include <errno.h>
41
#include <errno.h>
Line 180... Line 188...
180
    clrscr();
188
    clrscr();
181
    curs_goto(0,0);
189
    curs_goto(0,0);
182
    /* Set scrolling region to 0-25 lines */
190
    /* Set scrolling region to 0-25 lines */
183
    sysputs("\033[0;25r");
191
    sysputs("\033[0;25r");
184
}
192
}
-
 
193
 
-
 
194
/**
-
 
195
 * @}
-
 
196
 */
-
 
197