Skip to content

Commit

Permalink
hal/ia32: adapt to changed hal_in functions
Browse files Browse the repository at this point in the history
JIRA: RTOS-912
  • Loading branch information
badochov committed Sep 25, 2024
1 parent ced2966 commit b539e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hal/ia32/console-vga.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ void hal_consoleInit(void)
unsigned char color;

/* Check color support */
color = hal_inb((void *)0x3cc) & 0x01;
color = hal_inb(0x3cc) & 0x01;

/* Initialize VGA */
halconsole_common.vram = (u16 *)(color ? 0xb8000 : 0xb0000);
Expand Down

0 comments on commit b539e65

Please sign in to comment.