/* * display.h -- PC/AT display routine * * Copyright (C) 1997 by Sony Computer Entertainment * All rights Reserved */ void dispch(int ch); void disps(char *str); void dispf(); #define CURSOR_UL (0x0607) #define CURSOR_UPH (0x0003) #define CURSOR_DNH (0x0407) #define CURSOR_BOX (0x0007) #define CURSOR_OFF (0x2000) void setcursor_type(int curtype); int getcursor_type();