#include <stdarg.h>
#include <output.h>
-static char logents[4][41] = {{0}};
+#define LOGLEN 96
+#define LOG_ONSCREEN 4
+
+static char logents[LOGLEN][41] = {{0}};
+static int prodptr = 0;
+static int flush_imm = 0;
#define VRAM_BASE 0xA0000UL
#define TEXT_CONSOLE_OFFSET 0x18000UL
#define COLOR 0x1F
+void vga_flush_imm(int imm)
+{
+ flush_imm = imm;
+}
+
static unsigned char vga_read(unsigned char idx)
{
outb(CRTC_IDX_REG, idx);
smram_aseg_set_state(SMRAM_ASEG_SMMCODE);
- for (y = 0; y < 4; y++)
+ for (y = 0; y < LOG_ONSCREEN; y++)
for (x = 40; x < 80; x++)
{
basep[y*80*2+x*2] = ' ';
smram_restore_state(old_state);
- for (y = 0; y < 4; y++)
- strblit(logents[y], y, 40);
+ for (y = -LOG_ONSCREEN; y < 0; y++)
+ strblit(logents[(y + prodptr) % LOGLEN], y + LOG_ONSCREEN, 40);
}
void dolog(const char *s)
{
- memmove(logents[0], logents[1], sizeof(logents[0])*3);
- strcpy(logents[3], s);
+ strcpy(logents[prodptr], s);
+ prodptr = (prodptr + 1) % LOGLEN;
+ if (flush_imm)
+ outlog();
}
void (*output)(const char *s) = dolog;
{
va_list va;
- memmove(logents[0], logents[1], sizeof(logents[0])*3);
va_start(va, fmt);
- vsnprintf(logents[3], 40, fmt, va);
+ vsnprintf(logents[prodptr], 40, fmt, va);
va_end(va);
+ prodptr = (prodptr + 1) % LOGLEN;
+ if (flush_imm)
+ outlog();
}
void (*outputf)(const char *s, ...) = dologf;