Fixed memory mapping on ISA video cards - should now work on Award 430VX PCI.
This commit is contained in:
parent
0ed6193b70
commit
967feffbc0
10 changed files with 12 additions and 12 deletions
|
|
@ -81,7 +81,7 @@ void *vga_init()
|
|||
vga_t *vga = malloc(sizeof(vga_t));
|
||||
memset(vga, 0, sizeof(vga_t));
|
||||
|
||||
rom_init(&vga->bios_rom, "roms/ibm_vga.bin", 0xc0000, 0x8000, 0x7fff, 0, 0);
|
||||
rom_init(&vga->bios_rom, "roms/ibm_vga.bin", 0xc0000, 0x8000, 0x7fff, 0, MEM_MAPPING_EXTERNAL);
|
||||
|
||||
svga_init(&vga->svga, vga, 1 << 18, /*256kb*/
|
||||
NULL,
|
||||
|
|
|
|||
Loading…
Reference in a new issue