search for: vidcol

Displaying 2 results from an estimated 2 matches for "vidcol".

Did you mean: idcol
2011 Feb 18
1
[PATCH] core: Honor DISPLAY text background color when in VGA mode
...+.text: mov ah,09h ; Write character/attribute + mov cx,1 ; One character only + int 10h ; Write to screen mov al,[CursorCol] inc ax cmp al,[VidCols] -- 1.7.1
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
.../font.c @@ -164,7 +164,7 @@ void use_font(void) void adjust_screen(void) { com32sys_t ireg, oreg; - volatile uint8_t *vidrows = BIOS_vidrows; + volatile uint8_t *vidrows = (volatile uint8_t *)BIOS_vidrows; uint8_t rows, cols; rows = *vidrows; @@ -185,7 +185,7 @@ void adjust_screen(void) VidCols = --cols; /* Store count-1 (same as rows) */ } -void pm_adjust_screen(com32sys_t *regs) +void pm_adjust_screen(com32sys_t *regs __unused) { adjust_screen(); } diff --git a/core/fs/fs.c b/core/fs/fs.c index d8f8660..f6b2912 100644 --- a/core/fs/fs.c +++ b/core/fs/fs.c @@ -2,6 +2,7 @@ #inclu...